-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add yml files needed for release job
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 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,4 @@ | ||
name: Weld Core release | ||
release: | ||
current-version: 5.1.2.Final | ||
next-version: 5.1.3-SNAPSHOT |
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,65 @@ | ||
name: Weld Core Release | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
paths: | ||
- '.github/project.yml' | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
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 | ||
with: | ||
github-token: ${{secrets.GITHUB_TOKEN}} | ||
metadata-file-path: '.github/project.yml' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{secrets.RELEASE_TOKEN}} | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
server-id: 'sonatype-nexus-staging' | ||
server-username: 'MAVEN_DEPLOY_USERNAME' | ||
server-password: 'MAVEN_DEPLOY_TOKEN' | ||
gpg-private-key: ${{secrets.MAVEN_GPG_PRIVATE_KEY}} | ||
gpg-passphrase: 'MAVEN_GPG_PASSPHRASE' | ||
|
||
- name: Maven release ${{steps.metadata.outputs.current-version}} | ||
env: | ||
MAVEN_DEPLOY_USERNAME: ${{secrets.MAVEN_DEPLOY_USERNAME}} | ||
MAVEN_DEPLOY_TOKEN: ${{secrets.MAVEN_DEPLOY_TOKEN}} | ||
MAVEN_GPG_PASSPHRASE: ${{secrets.MAVEN_GPG_PASSPHRASE}} | ||
run: | | ||
export MAVEN_OPTS="--add-opens=java.base/java.util=ALL-UNNAMED" | ||
java -version | ||
git config --global user.name "Weld CI" | ||
git config --global user.email "[email protected]" | ||
git checkout -b release | ||
mvn release:prepare --batch-mode -Drelease -DreleaseVersion=${{steps.metadata.outputs.current-version}} -Dtag=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} | ||
git checkout ${{github.base_ref}} | ||
git rebase release | ||
mvn -B release:perform -Drelease | ||
git push | ||
git push --tags | ||
cd dist | ||
git checkout ${{steps.metadata.outputs.current-version}} | ||
gradle -PweldVersion=${{steps.metadata.outputs.current-version}} -PweldPath=${GITHUB_WORKSPACE} | ||
- name: Upload dist ZIP file | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: ./dist/weld-* |