Skip to content

Commit a1bb754

Browse files
committed
Reorder steps in GitHub Actions workflow to ensure project configuration is initialized after ImageMagick installation.
1 parent 8014a5a commit a1bb754

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ jobs:
3434
node-version: 20
3535
cache: pnpm
3636

37-
- name: Init Project Config
38-
run: |
39-
pnpm install
40-
pnpm pp:worker
41-
4237
- name: Install ImageMagick
4338
run: |
4439
sudo apt-get update
4540
sudo apt-get install -y imagemagick
4641
42+
- name: Init Project Config
43+
run: |
44+
pnpm install
45+
pnpm pp:worker
46+
4747
- name: Grant Execute Permission for Gradle
4848
run: chmod +x ./gradlew
4949

0 commit comments

Comments
 (0)