From ca8dfb006c93c00d3f45f632147ff782f9bf6076 Mon Sep 17 00:00:00 2001 From: monkeyx-net Date: Mon, 5 Aug 2024 18:32:57 +0100 Subject: [PATCH] On branch feat/godot-configurator Changes to be committed: modified: .github/workflows/build-configurator.yml --- .github/workflows/build-configurator.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-configurator.yml b/.github/workflows/build-configurator.yml index 115d99b5..4387a905 100644 --- a/.github/workflows/build-configurator.yml +++ b/.github/workflows/build-configurator.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 - name : exportGame uses: firebelley/godot-export@v5.2.1 with: @@ -41,3 +41,13 @@ jobs: generateReleaseNotes: true tag: ${{ github.ref_name }} artifacts: ${{ steps.export.outputs.archive_directory }}/* + - name: Upload Linux Release Asset + id: upload-linux-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: linux.zip + asset_name: Godot_Linux.zip + asset_content_type: application/zip