builds godot
Diffstat (limited to '.github/workflows/reusable-build.yml')
| -rw-r--r-- | .github/workflows/reusable-build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index d66bb51..76377c6 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -23,6 +23,10 @@ on: default: 2d required: false +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: BUILD_NAME: ${{ inputs.build-name }} ref: ${{ inputs.ref }} @@ -230,7 +234,7 @@ jobs: platform: [server, x11] name: Build linux tools - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - name: Build editor uses: bend-n/godot-builds/.github/actions/build-godot@main @@ -248,6 +252,7 @@ jobs: path: godot/bin/*.64 build-image: + permissions: write-all name: Build docker image runs-on: ubuntu-latest needs: [tools, templates] |