Skip to content

FIXAPI-3346 IGUS FIX - added an example to markdown to show closing o… #48

FIXAPI-3346 IGUS FIX - added an example to markdown to show closing o…

FIXAPI-3346 IGUS FIX - added an example to markdown to show closing o… #48

# This is a basic workflow to help you get started with Actions
name: Release and Publish to OSSRH (maven central)
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
#when repo is slow then it can take north of 10 minutes to validate
timeout-minutes: 20
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# see https://github.com/actions/setup-java
- name: Set up JDK 11 and .m2/settings.xml
uses: actions/setup-java@v1
with:
java-version: 11
server-id: ossrh
server-username: MAVEN_USERNAME # env variable for username in release:perform
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in release:perform
gpg-private-key: ${{ secrets.OSSRH_GPG_SECRET_KEY }} # Value of the GPG private key to import
gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Configure Git user
run: |
git config user.name github-actions
git config user.email [email protected]
# see https://blog.frankel.ch/github-actions-maven-releases/
- id: release-prepare
name: release prepare
env:
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
run: MAVEN_OPTS="-Djdk.xml.xpathExprGrpLimit=1000 -Djdk.xml.xpathExprOpLimit=1000" mvn --no-transfer-progress --batch-mode release:prepare
- id: release-perform
name: release perform
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
run: |
MAVEN_OPTS="-Djdk.xml.xpathExprGrpLimit=1000 -Djdk.xml.xpathExprOpLimit=1000" mvn \
--no-transfer-progress \
--batch-mode \
release:perform