We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aabb59c commit 00ee2d6Copy full SHA for 00ee2d6
1 file changed
.github/workflows/c-cpp.yml
@@ -19,11 +19,16 @@ jobs:
19
20
- name: Compile project
21
run: make
22
-
+
23
+ - name: Prepare artifact folder
24
+ run: |
25
+ mkdir -p CMFileManagerPSP
26
+ cp audio_driver/audio_driver.prx CMFileManagerPSP/
27
+ cp display_driver/display_driver.prx CMFileManagerPSP/
28
+ cp fs_driver/fs_driver.prx CMFileManagerPSP/
29
+ cp app/EBOOT.PBP CMFileManagerPSP/
30
31
- uses: actions/upload-artifact@v4
32
with:
- path: |
- audio_driver/audio_driver.prx
- display_driver/display_driver.prx
- fs_driver/fs_driver.prx
- app/EBOOT.PBP
33
+ name: CMFileManagerPSP
34
+ path: CMFileManagerPSP/
0 commit comments