From 2856a6f479aca01f919429b202b0520a1ad97a2e Mon Sep 17 00:00:00 2001 From: Ben Knutson Date: Wed, 18 Feb 2026 16:23:41 +0000 Subject: [PATCH] Refactor Github Action per b/485167538 --- .github/workflows/publish-release-artifacts.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release-artifacts.yml b/.github/workflows/publish-release-artifacts.yml index b776a1f..7d16a3e 100644 --- a/.github/workflows/publish-release-artifacts.yml +++ b/.github/workflows/publish-release-artifacts.yml @@ -40,9 +40,9 @@ jobs: - name: Upload Artifacts to Release run: | - echo Uploading ${{matrix.suffix}} artifact for ${{github.ref_name}} + echo Uploading ${{matrix.suffix}} artifact for ${GITHUB_REF_NAME} mv keep-sorted${{matrix.extension}} keep-sorted_${{matrix.suffix}}${{matrix.extension}} - gh release upload ${{github.ref_name}} keep-sorted_${{matrix.suffix}}${{matrix.extension}} --clobber + gh release upload ${GITHUB_REF_NAME} keep-sorted_${{matrix.suffix}}${{matrix.extension}} --clobber shell: bash env: GH_TOKEN: ${{ github.token }}