|
|
|
@ -22,7 +22,7 @@ jobs:
|
|
|
|
|
echo '创建 tmp/:'
|
|
|
|
|
mkdir /home/runner/tmp
|
|
|
|
|
echo '克隆 keystore:'
|
|
|
|
|
git clone "https://$TOKEN@$REPO" -b key /home/runner/tmp/key
|
|
|
|
|
git clone https://$TOKEN@$REPO -b key /home/runner/tmp/key
|
|
|
|
|
|
|
|
|
|
- name: checkout
|
|
|
|
|
uses: actions/checkout@v3.3.0
|
|
|
|
@ -43,6 +43,12 @@ jobs:
|
|
|
|
|
- name: Setup Android SDK
|
|
|
|
|
uses: android-actions/setup-android@v3
|
|
|
|
|
|
|
|
|
|
- name: install wine
|
|
|
|
|
id: wine_install
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt install wine64
|
|
|
|
|
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
|
|
- name: export software
|
|
|
|
|
id: export
|
|
|
|
|
# Use latest version (see releases for all versions)
|
|
|
|
@ -53,6 +59,7 @@ jobs:
|
|
|
|
|
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.2.1/Godot_v4.2.1-stable_export_templates.tpz
|
|
|
|
|
relative_project_path: ./
|
|
|
|
|
archive_output: true
|
|
|
|
|
wine_path: ${{ steps.wine_install.outputs.WINE_PATH }}
|
|
|
|
|
|
|
|
|
|
- name: create release
|
|
|
|
|
uses: ncipollo/release-action@v1
|
|
|
|
|