Skip to content

Commit 364078d

Browse files
committed
Update CI workflow step order
1 parent 5910a30 commit 364078d

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ jobs:
1414
container: archlinux:latest
1515

1616
steps:
17-
- name: Checkout
18-
uses: actions/checkout@v6
19-
with:
20-
submodules: recursive
21-
2217
- name: Dependencies
2318
run: |
2419
pacman -Syu --noconfirm --needed \
@@ -28,14 +23,20 @@ jobs:
2823
ninja \
2924
fooyin
3025
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
submodules: recursive
30+
3131
- name: Configure
3232
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
3333

3434
- name: Build
3535
run: cmake --build build --verbose
3636

3737
- name: Upload artifact
38-
uses: actions/upload-artifact@v6
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: fooyin-plugin-libvgm
4141
path: build/fyplugin_vgminput.so
42+
if-no-files-found: error

0 commit comments

Comments
 (0)