Skip to content

Commit

Permalink
chore: Update release.yml
Browse files Browse the repository at this point in the history
Remove version number from zip to allow `latest`
  • Loading branch information
markemer authored Nov 9, 2023
1 parent 18fec18 commit 62e09c8
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 @@ -16,9 +16,9 @@ jobs:
- name: Build for Release
run: swift build -c release --arch arm64 --arch x86_64 --product cap2spm
- name: Zip Executable
run: zip -j cap2spm-${{ github.ref_name }}.zip .build/apple/Products/Release/cap2spm
run: zip -j cap2spm.zip .build/apple/Products/Release/cap2spm
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: cap2spm-${{ github.ref_name }}.zip
files: cap2spm.zip
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 62e09c8

Please sign in to comment.