Perform 4.0.0-alpha7 Release #124
Workflow file for this run
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
name: SmallRye 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 | |
permissions: | |
attestations: write | |
id-token: write | |
# Needed for the publish-* workflows | |
contents: write | |
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.tag || github.ref_name}} | |
publish-gradle-plugin: | |
name: Publish Gradle Plugin | |
uses: ./.github/workflows/publish-gradle-plugin.yml | |
secrets: inherit | |
with: | |
version: ${{github.event.inputs.tag || github.ref_name}} | |
publish-tck: | |
name: Publish TCK Report | |
uses: ./.github/workflows/publish-tck.yml | |
secrets: inherit | |
with: | |
version: ${{github.event.inputs.tag || github.ref_name}} |