builds godot
Diffstat (limited to '.github/actions/build-upload-image/action.yml')
| -rw-r--r-- | .github/actions/build-upload-image/action.yml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/actions/build-upload-image/action.yml b/.github/actions/build-upload-image/action.yml index 6449aa5..aff9222 100644 --- a/.github/actions/build-upload-image/action.yml +++ b/.github/actions/build-upload-image/action.yml @@ -19,20 +19,24 @@ runs: uses: bend-n/godot-builds/.github/actions/get-version@main - name: Get templates - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: templates - - name: Get headless - uses: actions/download-artifact@v3 + - name: Get headless editor + uses: actions/download-artifact@v4 with: - name: server-tools-release + name: server-editor-release + + - name: List all downloaded files + run: ls -R + shell: bash - run: mv godot_server.x11.opt.tools.64 godot && chmod -v +x godot shell: bash - name: Login to GitHub Container Registry - uses: docker/[email protected] + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -44,9 +48,7 @@ runs: context: . file: Dockerfile push: true - tags: ghcr.io/${{ github.repository_owner }}/${{ inputs.name }}:${{ env.version-name }}${{ env.tag }} + tags: ghcr.io/${{ github.repository_owner }}/${{ inputs.name }}:${{ env.release-name }} build-args: | GODOT_VERSION=${{ env.version-name }} RELEASE_NAME=${{ env.release }} - env: - tag: ${{ env.release-name }} |