修复读取properteis文件bug #3
Workflow file for this run
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: Build and Release Jenkins Plugin | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
permissions: write-all | |
jobs: | |
build-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build with Maven | |
run: mvn clean verify | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: target/*.hpi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |