Skip to content

Commit

Permalink
Disable Windows ARM64 Build Publishes in GHA (ytmdesktop#1184)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElectricalBoy authored Oct 18, 2023
1 parent 6ad03e2 commit 185d4e2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:
build:
strategy:
matrix:
os: [
{ name: 'linux', image: 'ubuntu-latest' },
{ name: 'windows', image: 'windows-latest' },
{ name: 'macos', image: 'macos-latest' },
]
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
arch: [ 'x64', 'arm64' ]
exclude:
# Mitigation for Electron Forge naming conflict. See #1183.
- os: 'windows-latest'
arch: 'arm64'

fail-fast: true # Explicitly failing fast because this is a publish. We want to bail the entire release if something went wrong with another build

runs-on: ${{ matrix.os.image }}
runs-on: ${{ matrix.os }}

steps:
- name: Github checkout
Expand Down

0 comments on commit 185d4e2

Please sign in to comment.