pref: 更新了多个文件,包括物品、方块、网络傳輸 packets 和向量工具类。优化了代码注释,文檔,并添加了新的魔法物品和实体。 #15
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: CI build | |
on: | |
push: | |
branches: | |
- "1.19.2-master" | |
jobs: | |
pack: | |
runs-on: ubuntu-latest | |
env: | |
PUBLISH_SUFFIX: snapshots | |
steps: | |
- name: chackout | |
uses: actions/checkout@v4 | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: build | |
run: ./gradlew build | |
- name: upload snapshot | |
uses: actions/upload-artifact@v3 | |
with: | |
name: snapshot-1.19.2 | |
path: build/devlibs/* |