Skip to content

Commit a67a771

Browse files
authored
Merge pull request #72 from ia/artifact-zip
workflows/build.yml: remove redundant zip extension from file names of artifacts
2 parents bfe472e + 1cef97c commit a67a771

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Upload results
3838
uses: actions/upload-artifact@v4
3939
with:
40-
name: blips-windows-x86_64.zip
40+
name: blips-windows-x86_64
4141
path: |
4242
build/tools/blisp/Release/blisp.exe
4343
if-no-files-found: error
@@ -58,7 +58,7 @@ jobs:
5858
- name: Upload results
5959
uses: actions/upload-artifact@v4
6060
with:
61-
name: blips-apple-universal.zip
61+
name: blips-apple-universal
6262
path: |
6363
build/tools/blisp/blisp
6464
if-no-files-found: error
@@ -79,7 +79,7 @@ jobs:
7979
- name: Upload results
8080
uses: actions/upload-artifact@v4
8181
with:
82-
name: blips-linux-x86_64.zip
82+
name: blips-linux-x86_64
8383
path: |
8484
build/tools/blisp/blisp
8585
if-no-files-found: error
@@ -151,7 +151,7 @@ jobs:
151151
- name: Upload results
152152
uses: actions/upload-artifact@v4
153153
with:
154-
name: blisp-linux-${{ matrix.arch }}.zip
154+
name: blisp-linux-${{ matrix.arch }}
155155
path: |
156156
artifacts/blisp-*
157157
if-no-files-found: error

0 commit comments

Comments
 (0)