From def15ee1732544de4e47a4f4ddd66c4cbdf56f21 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 3 Oct 2024 11:03:01 +0200 Subject: [PATCH] Added option to name releaes --- .github/workflows/manual.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 4f28ef7..ae9dbe4 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -3,6 +3,9 @@ name: Manual Release on: workflow_dispatch: inputs: + name: releaseName + type: string + description: Name of release name: # Friendly description to be shown in the UI instead of 'name' description: 'Trigger a release built' @@ -85,7 +88,7 @@ jobs: uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "$(julia --version)-${{matrix.sys.os}}" + automatic_release_tag: "${{github.event.inputs.releaseName}${{matrix.sys.os}}" draft: false prerelease: true files: |