-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #298 from quarkiverse/update_release_names
Release workflow names are inverted
- Loading branch information
Showing
2 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,28 @@ | ||
name: Quarkiverse Prepare Release | ||
|
||
name: Quarkiverse Perform Release | ||
run-name: Perform ${{github.event.inputs.tag || github.ref_name}} Release | ||
on: | ||
pull_request: | ||
types: [ closed ] | ||
paths: | ||
- '.github/project.yml' | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: 'Tag to release' | ||
required: true | ||
|
||
permissions: | ||
attestations: write | ||
id-token: write | ||
contents: read | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
prepare-release: | ||
name: Prepare Release | ||
if: ${{ github.event.pull_request.merged == true}} | ||
uses: quarkiverse/.github/.github/workflows/prepare-release.yml@main | ||
perform-release: | ||
name: Perform Release | ||
uses: quarkiverse/.github/.github/workflows/perform-release.yml@main | ||
secrets: inherit | ||
with: | ||
version: ${{github.event.inputs.tag || github.ref_name}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,18 @@ | ||
name: Quarkiverse Perform Release | ||
run-name: Perform ${{github.event.inputs.tag || github.ref_name}} Release | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: 'Tag to release' | ||
required: true | ||
name: Quarkiverse Prepare Release | ||
|
||
permissions: | ||
attestations: write | ||
id-token: write | ||
contents: read | ||
on: | ||
pull_request: | ||
types: [ closed ] | ||
paths: | ||
- '.github/project.yml' | ||
|
||
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 | ||
prepare-release: | ||
name: Prepare Release | ||
if: ${{ github.event.pull_request.merged == true}} | ||
uses: quarkiverse/.github/.github/workflows/prepare-release.yml@main | ||
secrets: inherit | ||
with: | ||
version: ${{github.event.inputs.tag || github.ref_name}} |