From e92f5959de44a66931eecc332921002af5f8870b Mon Sep 17 00:00:00 2001 From: monkeyx-net Date: Mon, 5 Aug 2024 19:03:38 +0100 Subject: [PATCH] On branch feat/godot-configurator Changes to be committed: modified: .github/workflows/build-configurator.yml --- .github/workflows/build-configurator.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-configurator.yml b/.github/workflows/build-configurator.yml index 495bf5c3..4239ab4d 100644 --- a/.github/workflows/build-configurator.yml +++ b/.github/workflows/build-configurator.yml @@ -26,7 +26,7 @@ jobs: godot_executable_download_url: https://download.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_linux.x86_64.zip godot_export_templates_download_url: https://download.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_export_templates.tpz relative_project_path: ./tools/configurator - # relative_export_path: ../../ + relative_export_path: ../../ archive_output: true - name: Upload Linux artifact @@ -34,3 +34,12 @@ jobs: with: name: Godot Linux Configurator path: /home/runner/work/linux.zip + + + - name: create release + uses: ncipollo/release-action@v1.11.2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + generateReleaseNotes: true + tag: ${{ github.ref_name }} + artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action