Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 16, 2023
1 parent ffe6740 commit 0b1f96e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ jobs:
run: |
chmod +x carimbo
tar -czvf macOS.tar.gz --mode='a+rwx' carimbo
rm -rf carimbo
mv macOS.tar.gz ../artifacts
- name: Compress Artifacts
Expand All @@ -118,24 +117,21 @@ jobs:
run: |
chmod +x carimbo
tar -czvf Ubuntu.tar.gz --mode='a+rwx' carimbo
rm -rf carimbo
mv Ubuntu.tar.gz ../artifacts
- name: Compress Artifacts
if: matrix.config.name == 'WebAssembly'
working-directory: build
run: |
zip -jr WebAssembly.zip carimbo.wasm carimbo.js
rm -rf carimbo.wasm carimbo.js
mv WebAssembly.zip ../artifacts
- name: Compress Artifacts
if: matrix.config.name == 'Windows'
working-directory: build
shell: powershell
run: |
zip -jr Windows.zip carimbo.exe
rm -rf carimbo.exe
mv Windows.zip ../artifacts
Compress-Archive -LiteralPath 'carimbo.exe' -DestinationPath "../artifacts/Windows.zip"
- name: Upload Artifacts
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 0b1f96e

Please sign in to comment.