-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
62 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,62 @@ | ||
name: Release turbine | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "version number for this release." | ||
required: true | ||
|
||
jobs: | ||
build-maven-jars: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 11 | ||
distribution: 'zulu' | ||
cache: 'maven' | ||
server-id: sonatype-nexus-staging | ||
server-username: CI_DEPLOY_USERNAME | ||
server-password: CI_DEPLOY_PASSWORD | ||
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }} | ||
gpg-passphrase: MAVEN_GPG_PASSPHRASE | ||
|
||
- name: Bump Version Number | ||
run: | | ||
mvn --no-transfer-progress versions:set versions:commit -DnewVersion="${{ github.event.inputs.version }}" | ||
git ls-files | grep 'pom.xml$' | xargs git add | ||
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | ||
git config --global user.name "${{ github.actor }}" | ||
git commit -m "Release turbine ${{ github.event.inputs.version }}" | ||
git tag "v${{ github.event.inputs.version }}" | ||
echo "TARGET_COMMITISH=$(git rev-parse HEAD)" >> $GITHUB_ENV | ||
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/google/turbine.git | ||
- name: Deploy to Sonatype staging | ||
env: | ||
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }} | ||
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }} | ||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
run: | ||
mvn --no-transfer-progress -P sonatype-oss-release clean deploy -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" | ||
|
||
- name: Push tag | ||
run: | | ||
git push origin "v${{ github.event.inputs.version }}" | ||
- name: Add Jars to Release Entry | ||
uses: softprops/[email protected] | ||
with: | ||
draft: true | ||
name: ${{ github.event.input.version }} | ||
tag_name: "v${{ github.event.inputs.version }}" | ||
target_commitish: ${{ env.TARGET_COMMITISH }} | ||
files: | | ||
core/target/turbine-*.jar |