Prepare Release v3.0.7 #365
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: CI | |
# workflow triggers | |
on: | |
# manually | |
workflow_dispatch: | |
# PRs on `main` | |
pull_request: | |
branches: [main] | |
# nightly | |
schedule: | |
- cron: "0 2 * * *" | |
jobs: | |
verify: | |
name: Verify build | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Java and Maven cache | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
check-latest: true | |
cache: 'maven' | |
- name: Verify build | |
run: > | |
./mvnw clean verify | |
--batch-mode | |
--update-snapshots | |
--no-transfer-progress | |
deploy-snapshot: | |
name: Deploy snapshot | |
runs-on: ubuntu-latest | |
needs: [verify] | |
if: github.ref == 'refs/heads/main' && github.repository_owner == 'vitruv-tools' | |
strategy: | |
fail-fast: true | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Java and Maven cache | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
check-latest: true | |
cache: 'maven' | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
- name: Deploy snapshot | |
run: > | |
./mvnw clean deploy -P snapshot | |
--batch-mode | |
--update-snapshots | |
--no-transfer-progress | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} |