-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split release into two workflows (#1233)
* Split release into two workflows * TCK and Docs in separate workflows --------- Co-authored-by: Roberto Cortez <[email protected]>
- Loading branch information
Showing
6 changed files
with
151 additions
and
94 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Publish Docs | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
version: | ||
required: true | ||
description: Tag version to perform release | ||
type: string | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
publish-docs: | ||
name: Publish Docs | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
name: checkout ${{inputs.version}} | ||
with: | ||
ref: ${{inputs.version}} | ||
|
||
- name: git author | ||
run: | | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.9' | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 11 | ||
|
||
- name: docs release ${{inputs.version}} | ||
run: | | ||
cd documentation | ||
mvn package | ||
pipx install pipenv | ||
pipenv install | ||
git fetch origin gh-pages --depth=1 | ||
pipenv run mike deploy --config-file=mkdocs.yaml --push --update-aliases "${PROJECT_VERSION}" Latest | ||
env: | ||
PROJECT_VERSION: ${{inputs.version}} |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Publish TCK | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
version: | ||
required: true | ||
description: Tag version to perform release | ||
type: string | ||
|
||
jobs: | ||
publish-tck: | ||
name: Publish TCK | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java: [ 11, 17, 21 ] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
name: checkout ${{inputs.version}} | ||
with: | ||
ref: ${{inputs.version}} | ||
|
||
- uses: actions/setup-java@v4 | ||
name: set up jdk ${{matrix.java}} | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{matrix.java}} | ||
cache: 'maven' | ||
cache-dependency-path: '**/pom.xml' | ||
|
||
- name: generate tck report for jdk ${{matrix.java}} | ||
env: | ||
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
ZIP_NAME: smallrye-config-${{inputs.version}}-tck-results-java-${{matrix.java}}.zip | ||
run: | | ||
mvn -B formatter:validate verify --file pom.xml | ||
cd testsuite/tck/target | ||
zip -r $ZIP_NAME surefire-reports/ | ||
gh release upload ${{inputs.version}} $ZIP_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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
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-docs: | ||
name: Publish Docs | ||
uses: ./.github/workflows/publish-docs.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}} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: SmallRye Prepare Release | ||
|
||
on: | ||
pull_request: | ||
types: [ closed ] | ||
paths: | ||
- '.github/project.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
prepare-release: | ||
name: Prepare Release | ||
if: ${{ github.event.pull_request.merged == true}} | ||
uses: smallrye/.github/.github/workflows/prepare-release.yml@main | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.github/workflows/pre-release.yml → .github/workflows/review-release.yml
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,4 +1,4 @@ | ||
name: SmallRye Pre Release | ||
name: SmallRye Review Release | ||
|
||
on: | ||
pull_request: | ||
|