Skip to content

Commit

Permalink
Add automated release setup. Bump Weld parent version.
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotn committed Mar 26, 2024
1 parent b24e8af commit 6bd62f4
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
name: Weld API
release:
current-version: 6.0.Beta3
next-version: 6.0-SNAPSHOT
Binary file added .github/release/maven-settings.xml.gpg
Binary file not shown.
Binary file added .github/release/weld-sign.asc.gpg
Binary file not shown.
56 changes: 56 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Weld API 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

- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.8.8

- name: Maven release ${{steps.metadata.outputs.current-version}}
run: |
export MAVEN_OPTS="--add-opens=java.base/java.util=ALL-UNNAMED"
java -version
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output weld-sign.asc .github/release/weld-sign.asc.gpg
gpg --quiet --batch --yes --decrypt --passphrase="${{secrets.SECRET_PASSPHRASE}}" --output maven-settings.xml .github/release/maven-settings.xml.gpg
gpg --fast-import --no-tty --batch --yes weld-sign.asc
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}} -s maven-settings.xml
git checkout ${{github.base_ref}}
git rebase release
mvn -B release:perform -Drelease -s maven-settings.xml
git push
git push --tags
7 changes: 1 addition & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.jboss.weld</groupId>
<artifactId>weld-parent</artifactId>
<version>49</version>
<version>50</version>
</parent>

<name>Weld APIs Parent</name>
Expand All @@ -25,11 +25,6 @@
APIs for Weld, the compatible implementation for Jakarta Contexts and Dependency Injection
</description>

<ciManagement>
<system>Hudson</system>
<url>http://hudson.jboss.org</url>
</ciManagement>

<issueManagement>
<system>JIRA</system>
<url>http://jira.jboss.org/browse/WELD</url>
Expand Down

0 comments on commit 6bd62f4

Please sign in to comment.