v0.20.0 #11
Workflow file for this run
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
name: Release to staging | |
on: | |
release: | |
types: [ "created" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
server-id: ossrh | |
server-username: 'MAVEN_USERNAME' | |
server-password: 'MAVEN_PASSWORD' | |
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }} | |
gpg-passphrase: 'MAVEN_GPG_PASSPHRASE' | |
- name: Get hyperd version | |
id: evaluate-property | |
run: | | |
echo "HYPER_VERSION=$(mvn help:evaluate -Dexpression=hyperapi.version -q -DforceStdout)" >> $GITHUB_ENV | |
- name: Cache hyperd | |
uses: actions/cache@v3 | |
with: | |
path: | | |
target/.cache | |
key: ${{ runner.os }}-hyper-${{ env.HYPER_VERSION }} | |
restore-keys: | | |
${{ runner.os }}-hyper-${{ env.HYPER_VERSION }} | |
- name: Set version | |
run: mvn versions:set --no-transfer-progress -DnewVersion=${{ github.event.release.tag_name }} | |
- name: Build with Maven | |
run: mvn --batch-mode --no-transfer-progress clean deploy -P release --file pom.xml | |
env: | |
MAVEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }} |