LiteWorldEdit/.gitea/workflows/build.yml
zhangyuheng 2536ca17e9
All checks were successful
Java CI with Maven / build (push) Successful in 32m55s
测试CI-CD脚本
2023-12-07 11:54:48 +08:00

40 lines
1.0 KiB
YAML

name: Java CI with Maven
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Pull & Checkout"
uses: https://ssl.lunadeer.cn:14446/actions/checkout@v3
with:
fetch-depth: 0
- name: "Set up Maven"
uses: https://ssl.lunadeer.cn:14446/actions/setup-maven@v4
- name: "Set up JDK 17"
uses: https://ssl.lunadeer.cn:14446/actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
cache: maven
- name: "Build with Maven"
run: mvn -B package --file pom.xml
- name: "Copy jar to staging"
run: mkdir staging && cp target/*.jar staging
- name: "Build & test"
run: |
echo "done!"
- name: "setup go for release script"
uses: https://ssl.lunadeer.cn:14446/actions/setup-go@v4
with:
go-version: '>=1.20.1'
- name: "Release"
uses: https://ssl.lunadeer.cn:14446/actions/release-action@main
with:
files: |-
staging/*.jar
api_key: '${{secrets.RELEASE_TOKEN}}'