Skip to content

Commit

Permalink
Merge pull request #13 from stakpak/stakpak-1553
Browse files Browse the repository at this point in the history
Feat: Add Config Files
  • Loading branch information
kajogo777 authored Jan 6, 2025
2 parents ad3bc05 + ec737c4 commit 0a026eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ jobs:

- name: Prepare binary
if: startsWith(github.ref, 'refs/tags/')
shell: ${{ github.runner.os == 'Windows' && 'pwsh' || 'bash' }}
shell: ${{ contains(matrix.os, 'windows') && 'pwsh' || 'bash' }}
run: |
cd target/${{ matrix.target }}/release
${{ github.runner.os == 'Windows' && '7z a ../../../${{ matrix.artifact_name }}.zip ${{ env.BINARY_NAME }}.exe' || 'tar czf ../../../${{ matrix.artifact_name }}.tar.gz ${{ env.BINARY_NAME }}' }}
${{ contains(matrix.os, 'windows') && '7z a ../../../${{ matrix.artifact_name }}.zip ${{ env.BINARY_NAME }}.exe' || 'tar czf ../../../${{ matrix.artifact_name }}.tar.gz ${{ env.BINARY_NAME }}' }}
- name: Upload artifact
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit 0a026eb

Please sign in to comment.