史家之绝唱 #24
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 with Maven | |
on: | |
push: | |
paths: | |
- '**/**' # 监控所有文件的更改 | |
pull_request: | |
paths: | |
- '**/**' # 监控所有文件的更改 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Archive JAR file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: TeleportOffset | |
path: target/TeleportOffset-*.jar |