Skip to content

Pass GPG password to the Maven #104

Pass GPG password to the Maven

Pass GPG password to the Maven #104

Workflow file for this run

name: 'maven build'
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: JDK 21
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'
- name: node cache...
uses: actions/cache@v4
with:
path: '~/.npm/'
key: ${{ runner.os }}-npm-${{ hashFiles('**/package.json') }}
restore-keys: ${{ runner.os }}-npm
- name: build and test...
run: mvn clean verify