Skip to content

add term balance object #46

add term balance object

add term balance object #46

Workflow file for this run

name: build
on:
release:
types: ['published']
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set fake tty # https://github.com/actions/runner/issues/241
shell: 'script -q -e -c "bash {0}"'
run: |
export GPG_TTY=$(tty)
- name: Set up Apache Maven Central
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '11'
server-id: sonatype-nexus-staging
server-username: MAVEN_USERNAME
server-password: MAVEN_CENTRAL_TOKEN
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Publish to Apache Maven Central
run: mvn deploy
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}