Skip to content

Commit

Permalink
[CI] Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Jan 24, 2021
1 parent 68f128e commit 0200682
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Chmod +x
run: chmod +x target/release/neothesia
- name: zip binary
run: zip -r app.zip target/release/neothesia
run: zip -rj app.zip target/release/neothesia
- uses: actions/upload-artifact@v2
with:
name: ubuntu-artifact
Expand All @@ -42,8 +42,8 @@ jobs:
- name: copy binary
run: cp target/release/neothesia .github/app/Neothesia.app/Contents/MacOS
- name: zip binary
run: zip -r app.zip .github/app/Neothesia.app
run: cd .github/app/ && zip -r app.zip Neothesia.app && cd ../..
- uses: actions/upload-artifact@v2
with:
name: macos-artifact
path: app.zip
path: .github/app/app.zip

0 comments on commit 0200682

Please sign in to comment.