Skip to content

Commit

Permalink
Actions: Update to Ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rickard-von-essen committed Jan 2, 2023
1 parent ca56cab commit 0a5acdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-18.04', 'windows-2019', 'macos-latest' ]
os: ['ubuntu-20.04', 'windows-2019', 'macos-latest']
steps:
- name: Setup apt dependencies
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt update
sudo apt-get install --no-install-recommends -y libarchive-tools rpm
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
yarn electron-builder --publish always --x64 --mac
- name: Publish Linux releases
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-20.04'
env:
# These values are used for auto updates signing
# APPLE_ID: ${{ secrets.APPLE_ID }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:

strategy:
matrix:
os: [ 'ubuntu-18.04', 'windows-2019', 'macos-latest' ]
os: ['ubuntu-20.04', 'windows-2019', 'macos-latest']

steps:
- name: Setup apt dependencies
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt update
sudo apt-get install --no-install-recommends -y libarchive-tools rpm
Expand Down Expand Up @@ -59,4 +59,3 @@ jobs:
- name: yarn test
run: |
yarn test

0 comments on commit 0a5acdb

Please sign in to comment.