zhangyuheng
a4c61f183c
All checks were successful
Java CI-CD with Gradle / build (push) Successful in 4m55s
35 lines
787 B
YAML
35 lines
787 B
YAML
name: Java CI-CD with Gradle
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
# 配置权限
|
|
permissions: write-all
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '21'
|
|
distribution: 'zulu'
|
|
cache: gradle
|
|
- name: "Build with Gradle"
|
|
run: ./gradlew buildPlugin
|
|
- name: "Copy jar to staging"
|
|
run: mkdir staging && cp build/libs/*.jar staging/
|
|
- name: "Build & test"
|
|
run: |
|
|
echo "done!"
|
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
automatic_release_tag: "latest"
|
|
prerelease: false
|
|
files: |
|
|
staging/*.jar
|