We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3886a7c commit 98ff780Copy full SHA for 98ff780
.github/workflows/release.yml
@@ -41,11 +41,11 @@ jobs:
41
GOOS: ${{ matrix.os }}
42
GOARCH: ${{ matrix.arch }}
43
run: |
44
- go build -o capollama-${{ matrix.suffix }}${{ matrix.os == 'windows' && '.exe' || '' }}
+ go build -o ${{ matrix.os == 'windows' && 'capollama.exe' || 'capollama' }}
45
46
- name: Create release artifact
47
48
- 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
49
50
- name: Upload artifact
51
uses: actions/upload-artifact@v4
0 commit comments