Skip to content

Commit

Permalink
Build with extra method
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Mar 1, 2024
1 parent 643562d commit 7c24e1a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
include:
- {os: windows-latest, package: zip}
- {os: windows-latest, package: msi}
- {os: ubuntu-latest, package: zip}
- {os: ubuntu-latest, package: deb}
- {os: macos-latest, package: zip}
- {os: windows-latest, method: msi}
- {os: ubuntu-latest, method: deb}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand All @@ -42,7 +40,9 @@ jobs:
env:
OXIDIZE_VERSION: ${{steps.release.outputs.version}}
OXIDIZE_FILE_VERSION: ${{steps.release.outputs.msi_version}}
- run: kick ${{matrix.package}} --output dist
- run: kick zip --output dist
- run: kick ${{matrix.method}} --output dist
if: ${{matrix.method}}
- uses: actions/upload-artifact@v3
with:
name: dist-${{matrix.os}}
Expand Down

0 comments on commit 7c24e1a

Please sign in to comment.