Skip to content

Commit

Permalink
Create retry-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Sep 10, 2024
1 parent 2b69bc9 commit 5b57f5f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/retry-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Retry Release

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: quarkiverse/.github/.github/workflows/perform-release.yml@main
secrets: inherit
with:
version: ${{ github.event.inputs.version }}

0 comments on commit 5b57f5f

Please sign in to comment.