updated spigot and bungee api version #35
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
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
name: Publish Process | |
# ↓ 自動生成 下載檔案 及 javadoc | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source Code | |
id: checkout-source | |
uses: actions/checkout@v2 | |
- uses: eric2788/maven-jar-publish@v3 | |
with: | |
java-version: 18 | |
body: added multiple distribution management | |
upload-module: './groovier-plugin' | |
- name: 'Update javadocs' | |
id: update-javadoc | |
uses: eric2788/push-javadoc-branch@main | |
with: | |
use-maven: true | |
javadocs: javadocs | |
publish: | |
needs: [ build ] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-ecosystem/action-get-latest-tag@v1 | |
id: latest-tag | |
- uses: jungwinter/split@v2 | |
id: version | |
with: | |
msg: ${{ steps.latest-tag.outputs.tag }} | |
separator: '.' | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: '18' | |
distribution: 'adopt' | |
- uses: whelk-io/maven-settings-xml-action@main | |
with: | |
servers: '[ | |
{ "id": "github", "username": "eric2788", "password": "${{ secrets.GITHUB_TOKEN }}" }, | |
{ "id": "nexus-repo", "username": "${{ secrets.NEXUS_USER }}", "password": "${{ secrets.NEXUS_PASSWORD }}" } | |
]' | |
- name: Publish package (github) | |
run: mvn --batch-mode clean deploy -P github | |
if: ${{ steps.version.outputs.length <= 3 }} | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish package (xuan) | |
run: mvn --batch-mode clean deploy -P nexus-repo | |
if: ${{ steps.version.outputs.length <= 3 }} | |
continue-on-error: true |