Skip to content

[maven-release-plugin] prepare for next development iteration #37

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #37

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ github.sha }}
- run: ./mvnw clean verify -e -B -V
env:
RESOLVER_GPG_KEY: ${{ secrets.RESOLVER_GPG_KEY }}
RESOLVER_GPG_KEY_PASS: ${{ secrets.RESOLVER_GPG_KEY_PASS }}