Skip to content

test(schematron): fix typo in test example file (#1772) #554

test(schematron): fix typo in test example file (#1772)

test(schematron): fix typo in test example file (#1772) #554

Workflow file for this run

name: Maven Deploy
on:
push:
branches:
- master
jobs:
maven-deploy:
runs-on: ubuntu-latest
# Do not disturb forks
if: github.repository == 'xspec/xspec'
steps:
- uses: actions/checkout@v3
- run: gpg --version
- uses: actions/setup-java@v3
with:
java-version: 8
distribution: temurin
server-id: xspec-io.ossrh
server-username: NEXUS_USERNAME
server-password: NEXUS_PASSWORD
gpg-private-key: ${{ secrets.gpg_private_key }}
- run: mvn clean deploy --batch-mode --activate-profiles release
env:
NEXUS_USERNAME: ${{ secrets.nexus_username }}
NEXUS_PASSWORD: ${{ secrets.nexus_password }}
GPG_PASSPHRASE: ${{ secrets.gpg_passphrase }}