Skip to content

Commit

Permalink
Workaround electron/forge#3102.
Browse files Browse the repository at this point in the history
Downgrade GitHub-hosted Linux runner to `ubuntu-20.04`.
  • Loading branch information
SpacingBat3 committed Dec 2, 2022
1 parent 17b7564 commit 59b40cb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@ jobs:
runner: [ubuntu, windows, macos]
build: [latest, locked]
include:
- runner: ubuntu
- runner: ubuntu-20.04
name: Linux
arch: x64,arm64,armv7l
- runner: windows
- runner: windows-latest
name: Windows
arch: x64,arm64,ia32
- runner: macos
- runner: macos-latest
name: macOS
arch: x64,arm64,universal

name: '${{ matrix.name }} (${{ matrix.build }})'
runs-on: ${{ matrix.runner }}-latest
runs-on: ${{ matrix.runner }}
needs: ['test']
steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
matrix:
include:
- name: Linux
runner: ubuntu
runner: ubuntu-20.04
arch: x64,arm64,armv7l
- name: Windows
runner: windows
runner: windows-latest
arch: x64,arm64,ia32
- name: macOS
runner: macos
runner: macos-latest
arch: x64,arm64,universal

name: ${{ matrix.name }} (${{ matrix.arch }})
runs-on: ${{ matrix.runner }}-latest
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ jobs:
matrix:
include:
- name: Linux
runner: ubuntu
runner: ubuntu-20.04
arch: x64,arm64,armv7l
- name: Windows
runner: windows
runner: windows-latest
arch: x64,arm64,ia32
- name: macOS
runner: macos
runner: macos-latest
arch: x64,arm64,universal

name: ${{ matrix.name }} (${{ matrix.arch }})
runs-on: ${{ matrix.runner }}-latest
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit 59b40cb

Please sign in to comment.