Skip to content

Commit

Permalink
fxi release workflow #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Vulae committed Aug 1, 2024
1 parent c327720 commit 7676102
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
os: [ windows-x86_64, linux-x86_64 ]
include:
Expand All @@ -23,6 +24,7 @@ jobs:
target: x86_64-pc-windows-msvc
artifact_name: universal-explorer.exe
asset_name: universal-explorer_win_x86_64.exe
linker_package: gcc-mingw-w64-x86-64

steps:
- name: Checkout repository
Expand All @@ -34,6 +36,10 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}

- name: Install linker
if: ${{ matrix.linker_package }} != null
run: sudo apt-get install -y ${{ matrix.linker_package }}

- name: Build project
run: cargo build --release --target ${{ matrix.target }}

Expand Down

0 comments on commit 7676102

Please # to comment.