Skip to content

Commit 023a716

Browse files
Refactor Github Action per b/485167538 (#115)
This is a http://go/LSC run by http://go/ghss to automatically refactor your Github Actions per http://b/485167538. This is a PR to help you upgrade to the latest standards in Github Actions. Please merge this PR to accept the changes. NOTE: if you do not accept this PR, it may be force merged by the GHSS team. See http://b/485167538 for more details. Co-authored-by: Ben Knutson <benknutson@google.com>
1 parent 1605477 commit 023a716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-release-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ jobs:
4040

4141
- name: Upload Artifacts to Release
4242
run: |
43-
echo Uploading ${{matrix.suffix}} artifact for ${{github.ref_name}}
43+
echo Uploading ${{matrix.suffix}} artifact for ${GITHUB_REF_NAME}
4444
mv keep-sorted${{matrix.extension}} keep-sorted_${{matrix.suffix}}${{matrix.extension}}
45-
gh release upload ${{github.ref_name}} keep-sorted_${{matrix.suffix}}${{matrix.extension}} --clobber
45+
gh release upload ${GITHUB_REF_NAME} keep-sorted_${{matrix.suffix}}${{matrix.extension}} --clobber
4646
shell: bash
4747
env:
4848
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)