We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d554e8d commit c5e68dbCopy full SHA for c5e68db
1 file changed
.github/workflows/android-vulkan.yml
@@ -33,12 +33,14 @@ jobs:
33
- name: Compile 00_empty
34
working-directory: 00_empty
35
continue-on-error: true
36
- run: ../kore/make android -g vulkan --debug --compile
+ run: |
37
+ ../kore/make android -g vulkan --debug --compile
38
+ find . -name "core.*" -type f
39
- name: Upload core
40
uses: actions/upload-artifact@v4
41
with:
42
name: core
- path: core.*
43
+ path: '**/core.*'
44
- name: Compile 01_triangle
45
working-directory: 01_triangle
46
run: ../kore/make android -g vulkan --debug --compile
0 commit comments