Skip to content

Commit 366f3a6

Browse files
committed
https://v2.tauri.app/distribute/pipelines/github/ を参考に GitHub Actions 中に linux で必要なライブラリを導入するように修正
1 parent f9963b6 commit 366f3a6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/integration-backend.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v4
2626

27+
- name: install dependencies (ubuntu only)
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
31+
2732
- name: Install Rust
2833
uses: actions-rs/toolchain@v1
2934
with:

.github/workflows/integration-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: CI for Frontend
22

33
on:
44
push:

0 commit comments

Comments
 (0)