tools for exporting godot projects via Github Actions
dont need curl
bendn 2022-07-19
parent 0a45d37 · commit 40d0024
-rw-r--r--.github/actions/export-android/action.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/actions/export-android/action.yml b/.github/actions/export-android/action.yml
index 40b7276..32f3593 100644
--- a/.github/actions/export-android/action.yml
+++ b/.github/actions/export-android/action.yml
@@ -19,9 +19,7 @@ runs:
- name: Setup editor settings
# the Dockerfile is supposed to do this for me *grumbles*
run: |
- apt-get update && apt-get install -y curl
- mkdir -vp ~/.config/godot
- curl 'https://raw.githubusercontent.com/bend-n/godot-actions/main/.github/editor-settings.tres' --output ~/.config/godot/editor_settings-3.tres
+ wget -nv 'https://raw.githubusercontent.com/bend-n/godot-actions/main/.github/editor-settings.tres' -O ~/.config/godot/editor_settings-3.tres
# debug keystore is needed for release build /shrug
keytool -keyalg RSA -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname "CN=Android Debug,O=Android,C=US" -validity 9999 && mv debug.keystore ~/debug.keystore