builds godot
Diffstat (limited to '.github/workflows/linux_builds.yml')
| -rw-r--r-- | .github/workflows/linux_builds.yml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index a70e429..92037b6 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -6,26 +6,25 @@ on: branches: - main -env: - branch: 3.x - tools: yes - jobs: build: strategy: matrix: - target: [release, release_debug] + platform: [server, x11] - name: Build editor + name: Build runs-on: ubuntu-18.04 steps: - name: Build editor uses: bend-n/godot-2d-builds/.github/actions/build-godot@main with: - platform: x11 - target: ${{ matrix.target }} + platform: ${{ matrix.platform }} + target: release_debug + env: + branch: 3.x + tools: yes - name: Upload artifact uses: bend-n/godot-2d-builds/.github/actions/upload-artifact@main with: - name: linux-editor-${{ matrix.target }} + name: ${{ matrix.platform }}-tools-release |