There was an error while loading. Please reload this page.
1 parent 5910a30 commit 364078dCopy full SHA for 364078d
1 file changed
.github/workflows/build.yml
@@ -14,11 +14,6 @@ jobs:
14
container: archlinux:latest
15
16
steps:
17
- - name: Checkout
18
- uses: actions/checkout@v6
19
- with:
20
- submodules: recursive
21
-
22
- name: Dependencies
23
run: |
24
pacman -Syu --noconfirm --needed \
@@ -28,14 +23,20 @@ jobs:
28
ninja \
29
fooyin
30
25
26
+ - name: Checkout
27
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+
31
- name: Configure
32
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
33
34
- name: Build
35
run: cmake --build build --verbose
36
37
- name: Upload artifact
38
- uses: actions/upload-artifact@v6
+ uses: actions/upload-artifact@v4
39
with:
40
name: fooyin-plugin-libvgm
41
path: build/fyplugin_vgminput.so
42
+ if-no-files-found: error
0 commit comments