clean up workflow
This commit is contained in:
parent
8b33b9044e
commit
649006ee1d
21
.github/workflows/build-debug.yml
vendored
21
.github/workflows/build-debug.yml
vendored
|
@ -2,9 +2,8 @@
|
||||||
name: Build APK
|
name: Build APK
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
tags:
|
||||||
- main
|
- "v*-test"
|
||||||
- testing
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
GODOT_VERSION: 4.1.3
|
GODOT_VERSION: 4.1.3
|
||||||
|
@ -52,10 +51,6 @@ jobs:
|
||||||
unzip -q ./templates/android_source.zip -d ./android/build/
|
unzip -q ./templates/android_source.zip -d ./android/build/
|
||||||
rm ./templates/android_source.zip
|
rm ./templates/android_source.zip
|
||||||
|
|
||||||
- name: Test1
|
|
||||||
run: |
|
|
||||||
cat ~/.config/godot/editor_settings-4.tres
|
|
||||||
|
|
||||||
- name: export game
|
- name: export game
|
||||||
id: export
|
id: export
|
||||||
# Use latest version (see releases for all versions)
|
# Use latest version (see releases for all versions)
|
||||||
|
@ -67,14 +62,16 @@ jobs:
|
||||||
export_debug: true
|
export_debug: true
|
||||||
relative_project_path: ./
|
relative_project_path: ./
|
||||||
archive_output: true
|
archive_output: true
|
||||||
verbose: true
|
|
||||||
|
|
||||||
- name: Test2
|
|
||||||
run: |
|
|
||||||
cat ~/.config/godot/editor_settings-4.tres
|
|
||||||
|
|
||||||
- name: Upload APK
|
- name: Upload APK
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: immersive-home-debug
|
name: immersive-home-debug
|
||||||
path: ${{ steps.export.outputs.archive_directory }}
|
path: ${{ steps.export.outputs.archive_directory }}
|
||||||
|
|
||||||
|
- name: create release
|
||||||
|
uses: ncipollo/release-action@v1.11.2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
generateReleaseNotes: true
|
||||||
|
artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action
|
||||||
|
|
Loading…
Reference in New Issue
Block a user