-
Notifications
You must be signed in to change notification settings - Fork 94
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 #413 from Ladicek/improve-github-actions
improve GitHub Actions setup
- Loading branch information
Showing
3 changed files
with
13 additions
and
7 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
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
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 |
---|---|---|
|
@@ -14,10 +14,11 @@ jobs: | |
if: ${{github.event.pull_request.merged == true}} | ||
env: | ||
GITHUB_TOKEN: ${{secrets.RELEASE_TOKEN}} | ||
|
||
steps: | ||
- name: Retrieve project metadata | ||
id: metadata | ||
uses: radcortez/project-metadata-action@master | ||
uses: radcortez/project-metadata-action@main | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
metadata-file-path: '.github/project.yml' | ||
|
@@ -51,6 +52,7 @@ jobs: | |
run: | | ||
export MAVEN_OPTS="--add-opens=java.base/java.util=ALL-UNNAMED" | ||
java -version | ||
mvn --version | ||
git config --global user.name "SmallRye CI" | ||
git config --global user.email "[email protected]" | ||
git checkout -b release | ||
|
@@ -67,17 +69,19 @@ jobs: | |
git push | ||
git push --tags | ||
- uses: radcortez/milestone-release-action@master | ||
name: Milestone release | ||
- name: Milestone release | ||
uses: radcortez/milestone-release-action@main | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
milestone-title: ${{steps.metadata.outputs.current-version}} | ||
milestone-next: ${{steps.metadata.outputs.next-version}} | ||
|
||
github-pages: | ||
name: GitHub Pages | ||
needs: | ||
- release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|