Skip to content

Commit

Permalink
build on ubuntu 20.04 to fix missing glibc when using appimage on old…
Browse files Browse the repository at this point in the history
…er ubuntu systems
  • Loading branch information
falk-werner committed Dec 22, 2023
1 parent 3295822 commit 3f885aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
platform: [ubuntu-20.04]
runs-on: ${{ matrix.platform }}

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
Expand Down Expand Up @@ -49,4 +49,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: note.rs_${{runner.os}}
path: 'src-tauri/target/release/bundle/appimage/*.AppImage'
path: 'src-tauri/target/release/bundle/appimage/*.AppImage'

0 comments on commit 3f885aa

Please sign in to comment.