Skip to content

Commit

Permalink
Update build-all-and-release.yml
Browse files Browse the repository at this point in the history
make better binary zips
  • Loading branch information
justinvforvendetta committed Sep 5, 2024
1 parent 59a9bf7 commit 55b2258
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build-all-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,26 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: verge-ubuntu24

- name: Create zips
run: |
zip -r verge-windows32.zip verge-windows32/
zip -r verge-windows64.zip verge-windows64/
zip -r verge-macos13.zip verge-macos13/
zip -r verge-ubuntu20.zip verge-ubuntu20/
zip -r verge-ubuntu22.zip verge-ubuntu22/
zip -r verge-ubuntu24.zip verge-ubuntu24/
- name: push zips to release
uses: softprops/action-gh-release@v2
with:
tag_name: v7.6.0
files: |
/home/runner/work/verge/verge/verge-*.*
${{ github.workspace }}/verge-windows32/*
${{ github.workspace }}/verge-windows64/*
${{ github.workspace }}/verge-macos13/*
${{ github.workspace }}/verge-ubuntu20/*
${{ github.workspace }}/verge-ubuntu22/*
${{ github.workspace }}/verge-ubuntu24/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 55b2258

Please sign in to comment.