Skip to content

Commit

Permalink
Fixed release upload and Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Danixu committed Oct 30, 2023
1 parent ae9e9d1 commit f6422d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/compile-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
- name: Build linux release
run: cmake -B . && make
- name: Build windows release
run: cmake -DCMAKE_TOOLCHAIN_FILE="tc-win64.cmake" -B . && make
run: rm -rf CMakeFiles ; rm -rf */CMakeFiles ; rm -rf */*/CMakeFiles && cmake -DCMAKE_TOOLCHAIN_FILE="tc-win64.cmake" -B . && make
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Generate release
run: |
cd release
zip ziso_${{ env.RELEASE_VERSION }}_linux.zip bin/ziso
zip ziso_${{ env.RELEASE_VERSION }}_win64.zip bin/ziso.exe
cd bin
zip ziso_${{ env.RELEASE_VERSION }}_linux.zip ziso
zip ziso_${{ env.RELEASE_VERSION }}_win64.zip ziso.exe
- name: Upload assets
uses: marvinpinto/[email protected]
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
release/*.zip
bin/*.zip

0 comments on commit f6422d4

Please sign in to comment.