Skip to content

Commit 98ff780

Browse files
committed
Release ZIP file executables are now just the app name
1 parent 3886a7c commit 98ff780

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
GOOS: ${{ matrix.os }}
4242
GOARCH: ${{ matrix.arch }}
4343
run: |
44-
go build -o capollama-${{ matrix.suffix }}${{ matrix.os == 'windows' && '.exe' || '' }}
44+
go build -o ${{ matrix.os == 'windows' && 'capollama.exe' || 'capollama' }}
4545
4646
- name: Create release artifact
4747
run: |
48-
zip capollama-${{ matrix.suffix }}.zip capollama-${{ matrix.suffix }}${{ matrix.os == 'windows' && '.exe' || '' }} README.md LICENSE.txt
48+
zip capollama-${{ matrix.suffix }}.zip ${{ matrix.os == 'windows' && 'capollama.exe' || 'capollama' }} README.md LICENSE.txt
4949
5050
- name: Upload artifact
5151
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)