配置文件新增支持配置圈地最小限制 #28 #190
Workflow file for this run
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: Java CI-CD with Gradle | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
# 配置权限 | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up JDK 21" | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
cache: gradle | |
- name: "Build with Gradle" | |
run: ./gradlew buildPlugin | |
- name: "Copy jar to staging" | |
run: | | |
mkdir staging && cp build/libs/*.jar staging/ | |
- name: "Build & test" | |
run: | | |
TAG=$(echo $GITHUB_REF | sed 's/refs\/tags\///') | |
echo "done!" | |
- name: "GitHub Release" | |
uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "${{ steps.build.outputs.TAG }}" | |
prerelease: false | |
files: | | |
staging/*.jar | |
- name: "Modrinth Release" | |
uses: dsx137/modrinth-release-action@main | |
env: | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
with: | |
name: ${{ env.AUTOMATIC_RELEASES_TAG }} | |
project_id: vVZc7jAV | |
loaders: bukkit,folia,paper,purpur,spigot | |
game_versions: 1.20.1:1.20.6,1.21,1.21.1 | |
version_number: ${{ env.AUTOMATIC_RELEASES_TAG }} | |
files: | | |
staging/*.jar | |
changelog: "See https://github.com/ColdeZhang/Dominion/releases/tag/${{ env.AUTOMATIC_RELEASES_TAG }}" | |
version_type: beta | |
featured: false | |
updatable: false | |
delete_old_files: false | |
- name: "Hangar Release" | |
env: | |
HANGAR_TOKEN: ${{ secrets.HANGAR_API_TOKEN }} | |
run: ./gradlew build publishPluginPublicationToHangar --stacktrace | |
continue-on-error: true |