Skip to content

Commit

Permalink
Fix release building (trillek-team#174)
Browse files Browse the repository at this point in the history
* Fix assets not being bundled because of missing recursive switch
* Fix release package output name
  • Loading branch information
adam4813 authored Feb 6, 2021
1 parent fd6359b commit 7529e16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ jobs:
name: 'trillek-${{ matrix.os }}'
- name: Package release
run: |
zip --junk-paths -r -u trillek-${{ matrix.os }} build/client
zip --junk-paths -r -u trillek-${{ matrix.os }} build/server
zip -u trillek-${{ matrix.os }} assets/
zip --junk-paths -r -u trillek-${{ matrix.os }}.zip build/client
zip --junk-paths -r -u trillek-${{ matrix.os }}.zip build/server
zip -r -u trillek-${{ matrix.os }}.zip assets/
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand Down

0 comments on commit 7529e16

Please sign in to comment.