diff --git a/.github/workflows/retry-release.yml b/.github/workflows/retry-release.yml new file mode 100644 index 0000000..8870489 --- /dev/null +++ b/.github/workflows/retry-release.yml @@ -0,0 +1,26 @@ +name: Perform SmallRye Release Manually + +on: + workflow_dispatch: + inputs: + version: + type: string + description: Tag version to perform release + required: true + +permissions: + attestations: write + id-token: write + contents: read + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + perform-release: + name: Perform Release + uses: smallrye/.github/.github/workflows/perform-release.yml@main + secrets: inherit + with: + version: ${{ github.event.inputs.version }}