Skip to content

Commit a2bacd7

Browse files
committed
Fix publish workflow to use standard result.json in result_info artifact
1 parent a0d213b commit a2bacd7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,21 +124,21 @@ jobs:
124124
echo "Pull Request URL: ${{ steps.create-pr.outputs.pull-request-url }}"
125125
126126
# Create release_info.json artifact
127-
cat > release_info.json << EOF
127+
cat > result.json << EOF
128128
{
129129
"pull_request_number": "${{ steps.create-pr.outputs.pull-request-number }}",
130130
"pull_request_url": "${{ steps.create-pr.outputs.pull-request-url }}"
131131
}
132132
EOF
133133
134-
echo "Created release_info.json:"
135-
cat release_info.json
134+
echo "Created result.json for release_info:"
135+
cat result.json
136136
137137
- name: Upload release info artifact
138138
uses: actions/upload-artifact@v4
139139
with:
140140
name: release_info
141-
path: release_info.json
141+
path: result.json
142142
retention-days: 400
143143

144144
- name: Send Slack notification

0 commit comments

Comments
 (0)