Skip to content

Commit

Permalink
Release ZIP file executables are now just the app name
Browse files Browse the repository at this point in the history
  • Loading branch information
oderwat committed Oct 26, 2024
1 parent 3886a7c commit 98ff780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
run: |
go build -o capollama-${{ matrix.suffix }}${{ matrix.os == 'windows' && '.exe' || '' }}
go build -o ${{ matrix.os == 'windows' && 'capollama.exe' || 'capollama' }}
- name: Create release artifact
run: |
zip capollama-${{ matrix.suffix }}.zip capollama-${{ matrix.suffix }}${{ matrix.os == 'windows' && '.exe' || '' }} README.md LICENSE.txt
zip capollama-${{ matrix.suffix }}.zip ${{ matrix.os == 'windows' && 'capollama.exe' || 'capollama' }} README.md LICENSE.txt
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 98ff780

Please sign in to comment.