Skip to content

Commit

Permalink
fix missing linux deps on publish workflow run
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeepee committed Oct 20, 2023
1 parent 841029d commit 20c18b2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,11 @@ jobs:
with:
go-version: '1.18'

- name: Install Linux Deps
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf protobuf-compiler cmake
- name: Build modules
run: yarn run build-libs
- name: Publish core
Expand Down Expand Up @@ -343,6 +348,11 @@ jobs:
with:
go-version: '1.18'

- name: Install Linux Deps
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf protobuf-compiler cmake
- uses: actions/setup-node@v3
with:
node-version: '16.x'
Expand Down

0 comments on commit 20c18b2

Please sign in to comment.