Skip to content

Add GPG key configuration and .env for passphrase management #12

Add GPG key configuration and .env for passphrase management

Add GPG key configuration and .env for passphrase management #12

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Make mvnw executable
run: chmod +x mvnw
- name: Build
run: ./mvnw -B clean verify
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}