-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e99108b
commit d6cdfdf
Showing
1 changed file
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,10 @@ jobs: | |
with: | ||
path: build | ||
name: windowsBuild | ||
- uses: montudor/action-zip@v1 | ||
with: | ||
args: zip -qq -r build.zip . -i build/* | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -tzip build.zip -w ./build/. | ||
- name: Upload Windows Build to Release | ||
uses: svenstaro/[email protected] | ||
with: | ||
|
@@ -43,16 +44,18 @@ jobs: | |
with: | ||
path: build | ||
name: linuxBuild | ||
- uses: montudor/action-zip@v1 | ||
with: | ||
args: zip -qq -r build.zip . -i build/* | ||
- name: Upload Windows Build to Release | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -y -ttar build.tar -w ./build/. | ||
gzip build.tar | ||
- name: Upload Linux Build to Release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.zip | ||
asset_name: FoxaLinux64.zip | ||
file: build.tar.gz | ||
asset_name: FoxaLinux64.tar.gz | ||
overwrite: false | ||
|
||
release-mac: | ||
|
@@ -65,14 +68,15 @@ jobs: | |
with: | ||
path: build | ||
name: macBuild | ||
- uses: montudor/action-zip@v1 | ||
with: | ||
args: zip -qq -r build.zip . -i build/* | ||
- name: Compress build | ||
run: | | ||
sudo apt-get install p7zip-full | ||
7z a -tzip build.zip -w ./build/. | ||
- name: Upload Mac Build to Release | ||
uses: svenstaro/[email protected] | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
file: build.zip | ||
asset_name: FoxaMac64.zip | ||
overwrite: false | ||
overwrite: false |