Skip to content

Commit 112528f

Browse files
Fix native debug symbols generation (#78)
1 parent 923aeaa commit 112528f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
mv ./bin/android_debug.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_debug.apk
104104
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip
105105
106-
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
106+
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' && github.event_name == 'workflow_dispatch' }}
107107
name: Build Godot release template for Android
108108
run: |
109109
cd godot
@@ -114,6 +114,7 @@ jobs:
114114
mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
115115
mv ./bin/android_release.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_release.apk
116116
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip
117+
mv ./bin/android-template-release-native-symbols.zip ~/.local/share/godot/native_debug_symbols.zip
117118
118119
- name: Set up android build template
119120
run: |
@@ -181,6 +182,6 @@ jobs:
181182
uses: actions/upload-artifact@v4
182183
with:
183184
name: native_debug_symbols.zip
184-
path: godot/bin/android-template-release-native-symbols.zip
185+
path: ~/.local/share/godot/native_debug_symbols.zip
185186
if-no-files-found: ignore
186187
retention-days: 28

0 commit comments

Comments
 (0)