123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- name: Build spine-godot (Godot 4.x)
- on:
- 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:
- 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:
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- AWS_EC2_METADATA_DISABLED: true
- EM_VERSION: 3.1.64
- 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:
- godot-editor-windows:
- runs-on: windows-2022
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- shell: bash
- run: |
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-v4.sh $GODOT_MONO
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- 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:
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- shell: bash
- run: |
- 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
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-v4.sh $GODOT_MONO
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- 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:
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- shell: bash
- run: |
- ./spine-godot/build/install-macos-vulkan-sdk.sh
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-v4.sh $GODOT_MONO
- pushd spine-godot/godot/bin
- zip -r godot-editor-macos.zip Godot.app
- popd
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- 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
- godot-template-ios:
- runs-on: macos-latest
- if: ${{ inputs.godot_mono == false }}
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- run: |
- ./spine-godot/build/install-macos-vulkan-sdk.sh
- ./spine-godot/build/setup.sh $GODOT_TAG false
- ./spine-godot/build/build-templates-v4.sh ios
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-ios', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/ios.zip
- godot-template-macos:
- runs-on: macos-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- run: |
- ./spine-godot/build/install-macos-vulkan-sdk.sh
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-templates-v4.sh macos $GODOT_MONO
- - name: Upload artifacts
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/macos.zip
- godot-template-linux:
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- run: |
- 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
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-templates-v4.sh linux $GODOT_MONO
- - name: Upload artifacts debug
- uses: actions/upload-artifact@v4
- with:
- 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
- uses: actions/upload-artifact@v4
- with:
- 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:
- runs-on: windows-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- shell: bash
- run: |
- ./spine-godot/build/setup.sh $GODOT_TAG false $GODOT_MONO
- ./spine-godot/build/build-templates-v4.sh windows $GODOT_MONO
- - name: Upload artifacts debug
- uses: actions/upload-artifact@v4
- with:
- 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
- - name: Upload artifacts release
- uses: actions/upload-artifact@v4
- with:
- 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
- godot-template-android:
- runs-on: ubuntu-latest
- if: ${{ inputs.godot_mono == false }}
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- # Azure repositories are not reliable, we need to prevent azure giving us packages.
- - name: Make apt sources.list use the default Ubuntu repositories
- run: |
- sudo rm -f /etc/apt/sources.list.d/*
- sudo cp -f spine-godot/build/sources.lst /etc/apt/sources.list
- sudo apt-get update
- - name: Set up Java 17
- uses: actions/setup-java@v4
- with:
- distribution: temurin
- java-version: 17
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- shell: bash
- run: |
- ./spine-godot/build/setup.sh $GODOT_TAG false
- ./spine-godot/build/build-templates-v4.sh android
- - name: Upload artifacts debug
- uses: actions/upload-artifact@v4
- with:
- 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
- - name: Upload artifacts release
- uses: actions/upload-artifact@v4
- with:
- 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
- - name: Upload artifacts source
- uses: actions/upload-artifact@v4
- with:
- 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
- godot-template-web:
- runs-on: ubuntu-latest
- if: ${{ inputs.godot_mono == false }}
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
- - name: Set up Emscripten latest
- uses: mymindstorm/setup-emsdk@v11
- with:
- version: ${{env.EM_VERSION}}
- - name: Verify Emscripten setup
- run: |
- emcc -v
- - name: Setup python and scons
- uses: ./.github/actions/setup-godot-deps-4
- - name: Build Godot artifact
- run: |
- ./spine-godot/build/setup.sh $GODOT_TAG false
- ./spine-godot/build/build-templates-v4.sh web
- - name: Upload artifacts debug
- uses: actions/upload-artifact@v4
- with:
- 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
- - name: Upload artifacts release
- uses: actions/upload-artifact@v4
- with:
- 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
- - name: Upload artifacts no threads debug
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-nothreads-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_nothreads_debug.zip
- - name: Upload artifacts no threads release
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-nothreads-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_nothreads_release.zip
- - name: Upload artifacts dlink debug
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_dlink_debug.zip
- - name: Upload artifacts dlink release
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_dlink_release.zip
- - name: Upload artifacts dlink nothreads debug
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-nothreads-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_dlink_nothreads_debug.zip
- - name: Upload artifacts dlink nothreads release
- uses: actions/upload-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-nothreads-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- path: spine-godot/godot/bin/web_dlink_nothreads_release.zip
- 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]
- runs-on: ubuntu-latest
- if: ${{ inputs.godot_mono == false }}
- steps:
- - name: Download godot-editor-windows artifact
- uses: actions/download-artifact@v4
- 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@v4
- 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@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-editor-macos', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-ios artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-ios', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-macos artifact
- uses: actions/download-artifact@v4
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- with:
- 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
- uses: actions/download-artifact@v4
- with:
- 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
- uses: actions/download-artifact@v4
- with:
- 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
- uses: actions/download-artifact@v4
- with:
- 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
- uses: actions/download-artifact@v4
- with:
- 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
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-nothreads-release artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-nothreads-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-nothreads-debug artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-nothreads-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-dlink-release artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-dlink-debug artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-debug', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-dlink-nothreads-release artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-nothreads-release', env.GODOT_TAG, env.GODOT_MONO_UPLOAD_SUFFIX) }}
- - name: Download godot-template-web-dlink-nothreads-debug artifact
- uses: actions/download-artifact@v4
- with:
- name: ${{ format('{0}-{1}{2}.zip', 'godot-template-web-dlink-nothreads-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"
- mv godot.windows.editor.x86_64.exe godot-$BRANCH-$GODOT_TAG.exe
- mv godot.linuxbsd.editor.x86_64 godot-$BRANCH-$GODOT_TAG
- zip godot-editor-windows.zip godot-$BRANCH-$GODOT_TAG.exe
- zip godot-editor-linux.zip godot-$BRANCH-$GODOT_TAG
- aws s3 cp godot-editor-windows.zip s3://spine-godot/$BRANCH/$GODOT_TAG/
- aws s3 cp godot-editor-linux.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
- GODOT_MAJOR_MINOR=$(echo "$GODOT_VERSION" | sed -E 's/^([0-9]+\.[0-9]+).*/\1/')
- echo "Major.Minor version: $GODOT_MAJOR_MINOR"
- if [[ $(echo "$GODOT_MAJOR_MINOR >= 4.3" | bc) -eq 1 ]]; then
- echo "Version >= 4.3. Adding all web_xxx.zip files to template zip."
- WEB_FILES=(web_debug.zip web_release.zip web_nothreads_debug.zip web_nothreads_release.zip web_dlink_debug.zip web_dlink_nothreads_debug.zip web_dlink_release.zip web_dlink_nothreads_release.zip)
- else
- echo "Version < 4.3. Adding only web_debug.zip and web_release.zip."
- WEB_FILES=(web_debug.zip web_release.zip)
- fi
- echo "Web files to include: ${WEB_FILES[@]}"
- 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_FILES[@]}" \
- 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
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- 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@v4
- 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
|