Skip to content

修复无法删除,给予领地,重构语言系统 #25

修复无法删除,给予领地,重构语言系统

修复无法删除,给予领地,重构语言系统 #25

Workflow file for this run

name: ResidenceForm 自动构建
on: [push, pull_request]
jobs:
build:
if: contains(github.event.head_commit.message, '[构建跳过]') == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn package --file pom.xml
- name: Archive artifacts
uses: actions/upload-artifact@v3
if: success()
with:
name: ResidenceForm
path: target/ResidenceForm.jar
- name: Automatic Releases
uses: marvinpinto/[email protected]
if: success()
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "dev"
prerelease: false
title: "ResidenceForm 自动构建版本"
files: |
target/ResidenceForm.jar