Skip to content

Commit

Permalink
upgrade to supported Ubuntu runner (#863)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Jul 13, 2024
1 parent 9bb8d53 commit e457ac6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-13, windows-2019, ubuntu-18.04]
os: [macos-13, windows-2019, ubuntu-20.04]
arch: [x64, arm64]
include:
- os: macos-13
friendlyName: macOS
- os: windows-2019
friendlyName: Windows
- os: ubuntu-18.04
- os: ubuntu-20.04
friendlyName: Ubuntu
exclude:
- os: ubuntu-18.04
- os: ubuntu-20.04
arch: arm64
timeout-minutes: 60
env:
Expand Down Expand Up @@ -98,11 +98,11 @@ jobs:
run: yarn test:script
- name: Package application
run: yarn run package
if: ${{ matrix.os == 'ubuntu-18.04' && matrix.arch == 'x64' }}
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.arch == 'x64' }}
- name: Create Release
uses: softprops/action-gh-release@v1
if:
${{ matrix.os == 'ubuntu-18.04' && startsWith(github.ref,
${{ matrix.os == 'ubuntu-20.04' && startsWith(github.ref,
'refs/tags/') }}
with:
files: |
Expand Down

0 comments on commit e457ac6

Please sign in to comment.