|
@@ -1,20 +1,44 @@
|
|
-name: Build and Publish Godot 4.0 editor and templates
|
|
|
|
|
|
+name: Build spine-godot (Godot 4.x)
|
|
|
|
|
|
on:
|
|
on:
|
|
- push:
|
|
|
|
- paths:
|
|
|
|
- - ".github/workflows/spine-godot.yml"
|
|
|
|
- - 'spine-godot/**'
|
|
|
|
- - 'spine-cpp/**'
|
|
|
|
|
|
+ workflow_call:
|
|
|
|
+ inputs:
|
|
|
|
+ godot_tag:
|
|
|
|
+ required: true
|
|
|
|
+ type: string
|
|
|
|
+ default: "Godot tag not specified!"
|
|
|
|
+ godot_version:
|
|
|
|
+ required: true
|
|
|
|
+ type: string
|
|
|
|
+ default: "Godot version not specified!"
|
|
|
|
+ godot_mono:
|
|
|
|
+ required: true
|
|
|
|
+ type: boolean
|
|
|
|
+ default: false
|
|
workflow_dispatch:
|
|
workflow_dispatch:
|
|
|
|
+ inputs:
|
|
|
|
+ godot_tag:
|
|
|
|
+ required: true
|
|
|
|
+ type: string
|
|
|
|
+ default: "Godot tag not specified!"
|
|
|
|
+ godot_version:
|
|
|
|
+ required: true
|
|
|
|
+ type: string
|
|
|
|
+ default: "Godot version not specified!"
|
|
|
|
+ godot_mono:
|
|
|
|
+ required: true
|
|
|
|
+ type: boolean
|
|
|
|
+ default: false
|
|
|
|
|
|
env:
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
AWS_EC2_METADATA_DISABLED: true
|
|
AWS_EC2_METADATA_DISABLED: true
|
|
EM_VERSION: 3.1.18
|
|
EM_VERSION: 3.1.18
|
|
- GODOT_TAG: 4.0-stable
|
|
|
|
- GODOT_VERSION: 4.0.stable
|
|
|
|
|
|
+ GODOT_TAG: ${{ inputs.godot_tag }}
|
|
|
|
+ GODOT_VERSION: ${{ inputs.godot_version }}
|
|
|
|
+ GODOT_MONO: ${{ inputs.godot_mono }}
|
|
|
|
+ GODOT_MONO_UPLOAD_SUFFIX: ${{ inputs.godot_mono == true && '-mono' || '' }}
|
|
|
|
|
|
jobs:
|
|
jobs:
|
|
|
|
|
|
@@ -30,18 +54,18 @@ jobs:
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
shell: bash
|
|
shell: bash
|
|
- run: |
|
|
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-v4.sh
|
|
|
|
|
|
+ run: |
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-v4.sh $GODOT_MONO
|
|
|
|
|
|
- name: Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-editor-windows.zip
|
|
|
|
- path: spine-godot/godot/bin/godot.windows.editor.x86_64.exe
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-windows', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+ path: spine-godot/godot/bin/**/*
|
|
|
|
|
|
godot-editor-linux:
|
|
godot-editor-linux:
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
|
+ runs-on: ubuntu-20.04
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
with:
|
|
@@ -52,17 +76,17 @@ jobs:
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
shell: bash
|
|
shell: bash
|
|
- run: |
|
|
|
|
|
|
+ run: |
|
|
sudo apt-get update
|
|
sudo apt-get update
|
|
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
|
|
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-v4.sh
|
|
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-v4.sh $GODOT_MONO
|
|
|
|
|
|
- name: Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-editor-linux.zip
|
|
|
|
- path: spine-godot/godot/bin/godot.linuxbsd.editor.x86_64
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-linux', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+ path: spine-godot/godot/bin/**/*
|
|
|
|
|
|
godot-editor-macos:
|
|
godot-editor-macos:
|
|
runs-on: macos-latest
|
|
runs-on: macos-latest
|
|
@@ -78,38 +102,40 @@ jobs:
|
|
shell: bash
|
|
shell: bash
|
|
run: |
|
|
run: |
|
|
./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-v4.sh
|
|
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-v4.sh $GODOT_MONO
|
|
pushd spine-godot/godot/bin
|
|
pushd spine-godot/godot/bin
|
|
zip -r godot-editor-macos.zip Godot.app
|
|
zip -r godot-editor-macos.zip Godot.app
|
|
- popd
|
|
|
|
|
|
+ popd
|
|
|
|
|
|
- name: Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-editor-macos.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/godot-editor-macos.zip
|
|
path: spine-godot/godot/bin/godot-editor-macos.zip
|
|
|
|
|
|
godot-template-ios:
|
|
godot-template-ios:
|
|
runs-on: macos-latest
|
|
runs-on: macos-latest
|
|
|
|
+ if: ${{ inputs.godot_mono == false }}
|
|
|
|
+
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-depth: 0
|
|
|
|
|
|
- name: Setup python and scons
|
|
- name: Setup python and scons
|
|
- uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
+ uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
- run: |
|
|
|
|
- ./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
|
|
|
|
+ run: |
|
|
|
|
+ ./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
./spine-godot/build/setup.sh $GODOT_TAG false
|
|
./spine-godot/build/setup.sh $GODOT_TAG false
|
|
./spine-godot/build/build-templates-v4.sh ios
|
|
./spine-godot/build/build-templates-v4.sh ios
|
|
|
|
|
|
- name: Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-ios.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-ios', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/ios.zip
|
|
path: spine-godot/godot/bin/ios.zip
|
|
|
|
|
|
godot-template-macos:
|
|
godot-template-macos:
|
|
@@ -120,48 +146,48 @@ jobs:
|
|
fetch-depth: 0
|
|
fetch-depth: 0
|
|
|
|
|
|
- name: Setup python and scons
|
|
- name: Setup python and scons
|
|
- uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
+ uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
- run: |
|
|
|
|
|
|
+ run: |
|
|
./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
./spine-godot/build/install-macos-vulkan-sdk.sh
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-templates-v4.sh macos
|
|
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-templates-v4.sh macos $GODOT_MONO
|
|
|
|
|
|
- name: Upload artifacts
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-macos.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/macos.zip
|
|
path: spine-godot/godot/bin/macos.zip
|
|
|
|
|
|
godot-template-linux:
|
|
godot-template-linux:
|
|
- runs-on: ubuntu-18.04
|
|
|
|
|
|
+ runs-on: ubuntu-20.04
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-depth: 0
|
|
|
|
|
|
- name: Setup python and scons
|
|
- name: Setup python and scons
|
|
- uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
+ uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
- run: |
|
|
|
|
|
|
+ run: |
|
|
sudo apt-get update
|
|
sudo apt-get update
|
|
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
|
|
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-templates-v4.sh linux
|
|
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-templates-v4.sh linux $GODOT_MONO
|
|
|
|
|
|
- name: Upload artifacts debug
|
|
- name: Upload artifacts debug
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-linux-debug.zip
|
|
|
|
- path: spine-godot/godot/bin/linux_x11_64_debug
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+ path: spine-godot/godot/bin/linux_debug.x86_64
|
|
|
|
|
|
- name: Upload artifacts release
|
|
- name: Upload artifacts release
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-linux-release.zip
|
|
|
|
- path: spine-godot/godot/bin/linux_x11_64_release
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+ path: spine-godot/godot/bin/linux_release.x86_64
|
|
|
|
|
|
godot-template-windows:
|
|
godot-template-windows:
|
|
runs-on: windows-latest
|
|
runs-on: windows-latest
|
|
@@ -176,23 +202,24 @@ jobs:
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
shell: bash
|
|
shell: bash
|
|
run: |
|
|
run: |
|
|
- ./spine-godot/build/setup.sh $GODOT_TAG false
|
|
|
|
- ./spine-godot/build/build-templates-v4.sh windows
|
|
|
|
|
|
+ ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
|
|
|
|
+ ./spine-godot/build/build-templates-v4.sh windows $GODOT_MONO
|
|
|
|
|
|
- name: Upload artifacts debug
|
|
- name: Upload artifacts debug
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-windows-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/windows_debug_x86_64.exe
|
|
path: spine-godot/godot/bin/windows_debug_x86_64.exe
|
|
|
|
|
|
- name: Upload artifacts release
|
|
- name: Upload artifacts release
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-windows-release.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/windows_release_x86_64.exe
|
|
path: spine-godot/godot/bin/windows_release_x86_64.exe
|
|
|
|
|
|
godot-template-android:
|
|
godot-template-android:
|
|
runs-on: ubuntu-20.04
|
|
runs-on: ubuntu-20.04
|
|
|
|
+ if: ${{ inputs.godot_mono == false }}
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
with:
|
|
@@ -204,7 +231,7 @@ jobs:
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
sudo cp -f spine-godot/build/sources.lst /etc/apt/sources.list
|
|
sudo cp -f spine-godot/build/sources.lst /etc/apt/sources.list
|
|
sudo apt-get update
|
|
sudo apt-get update
|
|
-
|
|
|
|
|
|
+
|
|
- name: Set up Java 11
|
|
- name: Set up Java 11
|
|
uses: actions/setup-java@v1
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
with:
|
|
@@ -222,23 +249,25 @@ jobs:
|
|
- name: Upload artifacts debug
|
|
- name: Upload artifacts debug
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-android-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/android_debug.apk
|
|
path: spine-godot/godot/bin/android_debug.apk
|
|
|
|
|
|
- name: Upload artifacts release
|
|
- name: Upload artifacts release
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-android-release.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/android_release.apk
|
|
path: spine-godot/godot/bin/android_release.apk
|
|
|
|
|
|
- name: Upload artifacts source
|
|
- name: Upload artifacts source
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-android-source.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-source', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/android_source.zip
|
|
path: spine-godot/godot/bin/android_source.zip
|
|
|
|
|
|
godot-template-web:
|
|
godot-template-web:
|
|
runs-on: ubuntu-20.04
|
|
runs-on: ubuntu-20.04
|
|
|
|
+ if: ${{ inputs.godot_mono == false }}
|
|
|
|
+
|
|
steps:
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
with:
|
|
@@ -247,105 +276,107 @@ jobs:
|
|
- name: Set up Emscripten latest
|
|
- name: Set up Emscripten latest
|
|
uses: mymindstorm/setup-emsdk@v11
|
|
uses: mymindstorm/setup-emsdk@v11
|
|
with:
|
|
with:
|
|
- version: ${{env.EM_VERSION}}
|
|
|
|
|
|
+ version: ${{env.EM_VERSION}}
|
|
|
|
|
|
- name: Verify Emscripten setup
|
|
- name: Verify Emscripten setup
|
|
run: |
|
|
run: |
|
|
emcc -v
|
|
emcc -v
|
|
|
|
|
|
- name: Setup python and scons
|
|
- name: Setup python and scons
|
|
- uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
+ uses: ./.github/actions/setup-godot-deps
|
|
|
|
|
|
- name: Build Godot artifact
|
|
- name: Build Godot artifact
|
|
- run: |
|
|
|
|
|
|
+ run: |
|
|
./spine-godot/build/setup.sh $GODOT_TAG false
|
|
./spine-godot/build/setup.sh $GODOT_TAG false
|
|
./spine-godot/build/build-templates-v4.sh web
|
|
./spine-godot/build/build-templates-v4.sh web
|
|
|
|
|
|
- name: Upload artifacts debug
|
|
- name: Upload artifacts debug
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-web-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/web_debug.zip
|
|
path: spine-godot/godot/bin/web_debug.zip
|
|
|
|
|
|
- name: Upload artifacts release
|
|
- name: Upload artifacts release
|
|
uses: actions/upload-artifact@v3
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
with:
|
|
- name: godot-template-web-release.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
path: spine-godot/godot/bin/web_release.zip
|
|
path: spine-godot/godot/bin/web_release.zip
|
|
|
|
|
|
upload-to-s3:
|
|
upload-to-s3:
|
|
needs: [godot-editor-windows, godot-editor-linux, godot-editor-macos, godot-template-ios, godot-template-macos, godot-template-windows, godot-template-linux, godot-template-android, godot-template-web]
|
|
needs: [godot-editor-windows, godot-editor-linux, godot-editor-macos, godot-template-ios, godot-template-macos, godot-template-windows, godot-template-linux, godot-template-android, godot-template-web]
|
|
runs-on: ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
|
+ if: ${{ inputs.godot_mono == false }}
|
|
|
|
+
|
|
steps:
|
|
steps:
|
|
- name: Download godot-editor-windows artifact
|
|
- name: Download godot-editor-windows artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-editor-windows.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-windows', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-editor-linux artifact
|
|
- name: Download godot-editor-linux artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-editor-linux.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-linux', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-editor-macos artifact
|
|
- name: Download godot-editor-macos artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-editor-macos.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-ios artifact
|
|
- name: Download godot-template-ios artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-ios.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-ios', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-macos artifact
|
|
- name: Download godot-template-macos artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-macos.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-windows-release artifact
|
|
- name: Download godot-template-windows-release artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-windows-release.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-windows-debug artifact
|
|
- name: Download godot-template-windows-debug artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-windows-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-linux-release artifact
|
|
- name: Download godot-template-linux-release artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-linux-release.zip
|
|
|
|
-
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
- name: Download godot-template-linux-debug artifact
|
|
- name: Download godot-template-linux-debug artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-linux-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-android-release artifact
|
|
- name: Download godot-template-android-release artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-android-release.zip
|
|
|
|
-
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
- name: Download godot-template-android-debug artifact
|
|
- name: Download godot-template-android-debug artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-android-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-android-source artifact
|
|
- name: Download godot-template-android-source artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-android-source.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-android-source', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Download godot-template-web-release artifact
|
|
- name: Download godot-template-web-release artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-web-release.zip
|
|
|
|
-
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
- name: Download godot-template-web-debug artifact
|
|
- name: Download godot-template-web-debug artifact
|
|
uses: actions/download-artifact@v2
|
|
uses: actions/download-artifact@v2
|
|
with:
|
|
with:
|
|
- name: godot-template-web-debug.zip
|
|
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
|
|
- name: Upload artifacts to S3
|
|
- name: Upload artifacts to S3
|
|
shell: bash
|
|
shell: bash
|
|
@@ -362,7 +393,73 @@ jobs:
|
|
aws s3 cp godot-editor-macos.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
|
|
aws s3 cp godot-editor-macos.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
|
|
echo "$GODOT_VERSION" > version.txt
|
|
echo "$GODOT_VERSION" > version.txt
|
|
ls -lah
|
|
ls -lah
|
|
- zip spine-godot-templates-$BRANCH-$GODOT_TAG.zip ios.zip macos.zip windows_debug_x86_64.exe windows_release_x86_64.exe linux_x11_64_debug linux_x11_64_release web_debug.zip web_release.zip android_release.apk android_debug.apk android_source.zip version.txt
|
|
|
|
|
|
+ zip spine-godot-templates-$BRANCH-$GODOT_TAG.zip ios.zip macos.zip windows_debug_x86_64.exe windows_release_x86_64.exe linux_debug.x86_64 linux_release.x86_64 web_debug.zip web_release.zip android_release.apk android_debug.apk android_source.zip version.txt
|
|
aws s3 cp spine-godot-templates-$BRANCH-$GODOT_TAG.zip s3://spine-godot/$BRANCH/$GODOT_TAG/spine-godot-templates-$BRANCH-$GODOT_TAG.tpz
|
|
aws s3 cp spine-godot-templates-$BRANCH-$GODOT_TAG.zip s3://spine-godot/$BRANCH/$GODOT_TAG/spine-godot-templates-$BRANCH-$GODOT_TAG.tpz
|
|
|
|
|
|
-
|
|
|
|
|
|
+ upload-to-s3-mono:
|
|
|
|
+ needs: [godot-editor-windows, godot-editor-linux, godot-editor-macos, godot-template-macos, godot-template-windows, godot-template-linux]
|
|
|
|
+ runs-on: ubuntu-latest
|
|
|
|
+ if: ${{ inputs.godot_mono == true }}
|
|
|
|
+
|
|
|
|
+ steps:
|
|
|
|
+ - name: Download godot-editor-windows artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-windows', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-editor-linux artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-linux', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-editor-macos artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-template-macos artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-template-windows-release artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-template-windows-debug artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-windows-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-template-linux-release artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Download godot-template-linux-debug artifact
|
|
|
|
+ uses: actions/download-artifact@v2
|
|
|
|
+ with:
|
|
|
|
+ name: ${{ format('{0}-{1}{2}.zip', 'godot-template-linux-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
|
|
|
|
+
|
|
|
|
+ - name: Upload artifacts to S3
|
|
|
|
+ shell: bash
|
|
|
|
+ if: env.AWS_ACCESS_KEY_ID != null
|
|
|
|
+ run: |
|
|
|
|
+ BRANCH=${GITHUB_REF#refs/heads/}
|
|
|
|
+ echo "branch: $BRANCH"
|
|
|
|
+ ls -lahR
|
|
|
|
+ mv godot.windows.editor.x86_64.mono.exe godot-$BRANCH-$GODOT_TAG-mono.exe
|
|
|
|
+ mv godot.linuxbsd.editor.x86_64.mono godot-$BRANCH-$GODOT_TAG-mono
|
|
|
|
+ zip -r godot-editor-windows-mono.zip godot-$BRANCH-$GODOT_TAG-mono.exe GodotSharp
|
|
|
|
+ zip -r godot-editor-linux-mono.zip godot-$BRANCH-$GODOT_TAG-mono GodotSharp
|
|
|
|
+ mv godot-editor-macos.zip godot-editor-macos-mono.zip
|
|
|
|
+ aws s3 cp godot-editor-windows-mono.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
|
|
|
|
+ aws s3 cp godot-editor-linux-mono.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
|
|
|
|
+ aws s3 cp godot-editor-macos-mono.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
|
|
|
|
+ echo "$GODOT_VERSION.mono" > version.txt
|
|
|
|
+ zip spine-godot-templates-$BRANCH-$GODOT_TAG-mono.zip macos.zip windows_debug_x86_64.exe windows_release_x86_64.exe linux_debug.x86_64 linux_release.x86_64 version.txt
|
|
|
|
+ aws s3 cp spine-godot-templates-$BRANCH-$GODOT_TAG-mono.zip s3://spine-godot/$BRANCH/$GODOT_TAG/spine-godot-templates-$BRANCH-$GODOT_TAG-mono.tpz
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|