Skip to content

Commit 52fda8a

Browse files
committed
fix: append .tar.gz extension to artifact name in upload steps
1 parent 2d1ded9 commit 52fda8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bazel_cli_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
5858
uses: actions/upload-artifact@v4
5959
with:
60-
name: ${{ env.ARTIFACT_NAME }}
60+
name: ${{ env.ARTIFACT_NAME }}.tar.gz
6161
path: ${{ env.ARTIFACT_NAME }}.tar.gz
6262
- name: Upload to Release
6363
if: startsWith(github.ref, 'refs/tags/')
@@ -100,7 +100,7 @@ jobs:
100100
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
101101
uses: actions/upload-artifact@v4
102102
with:
103-
name: ${{ env.ARTIFACT_NAME }}
103+
name: ${{ env.ARTIFACT_NAME }}.tar.gz
104104
path: ${{ env.ARTIFACT_NAME }}.tar.gz
105105
- name: Upload to Release
106106
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)