Should add SoulAPI and UniqueAPI to TranslatableReader #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy_package: | |
runs-on: ubuntu-latest | |
if: ${{ endsWith(github.event.head_commit.message, '-package') }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: ☕️Set up JDK 16 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 16 | |
- name: 📦Deploy to Github Package Registry | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn --file ci-pom.xml deploy |