feat: 新增 Velocity 支持
All checks were successful
Publish Project / build (push) Successful in 2m31s

This commit is contained in:
2025-08-06 01:45:27 +08:00
parent 7582653d54
commit 9ac54fa915

View File

@@ -0,0 +1,28 @@
name: Publish Project
on:
push:
tags:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
cache: gradle
cache-dependency-path: gradle/wrapper/gradle-wrapper.properties
- name: Build Project
env:
ORG_GRADLE_PROJECT_MAVEN_AIRGAME_TOKEN: ${{ secrets.MAVEN_AIRGAME_TOKEN }}
run: chmod +x gradlew && ./gradlew build
- name: Publish to Release
uses: softprops/action-gh-release@v2
with:
files: build/*.jar