Skip to content

Commit 6334f2a

Browse files
committed
f
1 parent 0219a37 commit 6334f2a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
contents: read
227227

228228
steps:
229-
- name: Download artifact
229+
- name: Download artifacts
230230
uses: actions/download-artifact@v6
231231
with:
232232
pattern: ${{ env.ARTIFACT_PREFIX }}*
@@ -257,7 +257,7 @@ jobs:
257257
- name: Determine whether publishing to AWS is possible
258258
id: aws-determination
259259
run: |
260-
echo "::set-output name=publish::${{ secrets.AWS_ROLE_TO_ASSUME != '' }}"
260+
echo "publish=${{ secrets.AWS_ROLE_TO_ASSUME != '' }}" >>$GITHUB_OUTPUT
261261
262262
- name: Download artifact
263263
if: steps.aws-determination.outputs.publish == 'true'

.github/workflows/release-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ jobs:
224224
- name: Determine whether publishing to AWS is possible
225225
id: aws-determination
226226
run: |
227-
echo "::set-output name=publish::${{ secrets.AWS_ROLE_TO_ASSUME != '' }}"
227+
echo "publish=${{ secrets.AWS_ROLE_TO_ASSUME != '' }}" >>$GITHUB_OUTPUT
228228
229229
- name: Download artifact
230230
uses: actions/download-artifact@v6

0 commit comments

Comments
 (0)