workflow: allow windows build to fail
This commit is contained in:
parent
433b59e1a6
commit
2b559aa7e7
1 changed files with 5 additions and 0 deletions
5
.github/workflows/electron_hash.yml
vendored
5
.github/workflows/electron_hash.yml
vendored
|
|
@ -33,9 +33,11 @@ jobs:
|
||||||
|
|
||||||
release:
|
release:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
continue-on-error: ${{ matrix.experimental }}
|
||||||
|
|
||||||
# Run different jobs for each OS
|
# Run different jobs for each OS
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
|
|
@ -43,16 +45,19 @@ jobs:
|
||||||
asset_name: checksums
|
asset_name: checksums
|
||||||
app_ext: AppImage
|
app_ext: AppImage
|
||||||
app_os: linux
|
app_os: linux
|
||||||
|
experimental: false
|
||||||
- os: macos-11
|
- os: macos-11
|
||||||
artifact_name: checksums
|
artifact_name: checksums
|
||||||
asset_name: checksums
|
asset_name: checksums
|
||||||
app_ext: dmg
|
app_ext: dmg
|
||||||
app_os: mac
|
app_os: mac
|
||||||
|
experimental: false
|
||||||
- os: windows-2022
|
- os: windows-2022
|
||||||
artifact_name: checksums
|
artifact_name: checksums
|
||||||
asset_name: checksums
|
asset_name: checksums
|
||||||
app_ext: exe
|
app_ext: exe
|
||||||
app_os: windows
|
app_os: windows
|
||||||
|
experimental: true
|
||||||
|
|
||||||
needs: pre_build # job dependency and shared variables
|
needs: pre_build # job dependency and shared variables
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue