Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Commit 4396664

Browse files
committed
Fixed order of steps in release.yml
1 parent d5dfe59 commit 4396664

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v4
2929

30+
- name: install dependencies (ubuntu only)
31+
if: matrix.platform == 'ubuntu-22.04'
32+
run: |
33+
sudo apt-get update
34+
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
35+
3036
- name: setup node
3137
uses: actions/setup-node@v4
3238
with:
@@ -38,12 +44,6 @@ jobs:
3844
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
3945
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
4046

41-
- name: install dependencies (ubuntu only)
42-
if: matrix.platform == 'ubuntu-22.04'
43-
run: |
44-
sudo apt-get update
45-
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
46-
4747
- name: install frontend dependencies
4848
run: npm install
4949

0 commit comments

Comments
 (0)