mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-28 20:15:20 +03:00
do not apt on selfhosted arm64
This commit is contained in:
parent
2ece0c32c1
commit
94febd6c6b
6
.github/workflows/publish.yaml
vendored
6
.github/workflows/publish.yaml
vendored
@ -102,10 +102,12 @@ jobs:
|
||||
echo "version=$NEXT_VERSION" >> $GITHUB_ENV
|
||||
|
||||
- run: sudo apt-get update
|
||||
if: runner.os == 'Linux'
|
||||
# self hosted Linux ARM64 runner has this baked in
|
||||
if: runner.os == 'Linux' && runner.arch != 'ARM64'
|
||||
- name: Install system dependencies
|
||||
# self hosted Linux ARM64 runner has this baked in
|
||||
uses: daaku/gh-action-apt-install@v4
|
||||
if: runner.os == 'Linux'
|
||||
if: runner.os == 'Linux' && runner.arch != 'ARM64'
|
||||
with:
|
||||
# https://tauri.app/v1/guides/getting-started/prerequisites#setting-up-linux
|
||||
packages: libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
|
||||
|
Loading…
Reference in New Issue
Block a user