From 16fe8263ac7615a7b6ab25b6c52dcdd6adfee91e Mon Sep 17 00:00:00 2001 From: bendn Date: Sat, 8 Feb 2025 14:12:50 +0700 Subject: [PATCH] hmm --- .github/actions/build-upload-image/action.yml | 6 +++--- .github/workflows/reusable-build.yml | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/actions/build-upload-image/action.yml b/.github/actions/build-upload-image/action.yml index dcdae3d..c04f293 100644 --- a/.github/actions/build-upload-image/action.yml +++ b/.github/actions/build-upload-image/action.yml @@ -23,12 +23,12 @@ runs: with: name: templates - - name: Get editor + - name: Get headless editor uses: actions/download-artifact@v3 with: - name: linuxbsd-editor-release + name: server-editor-release - - run: mv godot.x11.opt.64 godot && chmod -v +x godot + - run: mv godot_server.x11.opt.64 godot && chmod -v +x godot shell: bash - name: Login to GitHub Container Registry diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 16153b3..6134229 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -242,19 +242,22 @@ jobs: path: ${{ env.tmps }}/templates.tpz editor: + strategy: + matrix: + platform: [server, linuxbsd] name: Linux editor runs-on: ubuntu-20.04 steps: - name: Compilation uses: bend-n/godot-builds/.github/actions/build-godot@main with: - platform: linuxbsd + platform: ${{ matrix.platform }} target: release - name: Upload artifact uses: bend-n/godot-builds/.github/actions/upload-artifact@main with: - name: linuxbsd-editor-release + name: ${{ matrix.platform }}-editor-release path: godot/bin/*.64 image: