Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
mv ./bin/android_debug.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_debug.apk
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip

- if: ${{ steps.cache-template.outputs.cache-hit != 'true' }}
- if: ${{ steps.cache-template.outputs.cache-hit != 'true' && github.event_name == 'workflow_dispatch' }}
name: Build Godot release template for Android
run: |
cd godot
Expand All @@ -114,6 +114,7 @@ jobs:
mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/
mv ./bin/android_release.apk ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_release.apk
mv ./bin/android_source.zip ~/.local/share/godot/export_templates/${GODOT_VERSION}.${GODOT_RELEASE}/android_source.zip
mv ./bin/android-template-release-native-symbols.zip ~/.local/share/godot/native_debug_symbols.zip

- name: Set up android build template
run: |
Expand Down Expand Up @@ -181,6 +182,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: native_debug_symbols.zip
path: godot/bin/android-template-release-native-symbols.zip
path: ~/.local/share/godot/native_debug_symbols.zip
if-no-files-found: ignore
retention-days: 28
Loading