Skip to content

Commit dc82646

Browse files
committed
fix
1 parent bc80146 commit dc82646

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/tauri_app_build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@ jobs:
127127
uses: actions/checkout@v3
128128

129129
- run: echo "VERSION=$(jq -r '.package.version' vue/src-tauri/tauri.conf.json)" >> $env:GITHUB_ENV
130+
131+
- name: Install dependencies (ubuntu only)
132+
if: matrix.os == 'ubuntu-22.04'
133+
run: |
134+
sudo apt-get update
135+
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libavformat libavcodec libavdevice libavutil libavfilter libswscale libswresample libayatana-appindicator3-dev librsvg2-dev patchelf
130136
131137
- name: Setup Python
132138
uses: actions/setup-python@v4
@@ -165,11 +171,7 @@ jobs:
165171
with:
166172
workspaces: './vue/src-tauri -> target'
167173

168-
- name: Install dependencies (ubuntu only)
169-
if: matrix.os == 'ubuntu-22.04'
170-
run: |
171-
sudo apt-get update
172-
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libavformat libavcodec libavdevice libavutil libavfilter libswscale libswresample libayatana-appindicator3-dev librsvg2-dev patchelf
174+
173175

174176
- name: Build the app
175177
run: |

0 commit comments

Comments
 (0)