diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..0706727 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,22 @@ +# Uses action: https://github.com/ncipollo/release-action + +name: Create Release + +on: + workflow_dispatch: + inputs: + tag: + description: Release tag name + required: true + type: string + +jobs: + create-release: + permissions: + contents: write + name: call-create-release-workflow + uses: Andy4495/.github/.github/workflows/create-release.yml@main + with: + tag: ${{ inputs.tag }} + draft: true + secrets: inherit