Skip to content

Commit

Permalink
Merge pull request #12 from stakpak/stakpak-8023
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 46accd9 + c040de8 commit ad3bc05
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: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }}
shell: ${{ github.runner.os == 'Windows' && 'pwsh' || 'bash' }}
run: |
cd target/${{ matrix.target }}/release
${{ runner.os == 'Windows' && '7z a ../../../${{ matrix.artifact_name }}.zip ${{ env.BINARY_NAME }}.exe' || 'tar czf ../../../${{ matrix.artifact_name }}.tar.gz ${{ env.BINARY_NAME }}' }}
${{ github.runner.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 ad3bc05

Please sign in to comment.