Merge pull request 'release_1.1.5' (#9) from release_1.1.5 into master #7
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: Publish Release Build | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Set up Maven cache | |
uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build with Maven | |
run: mvn clean verify -U -P release-build | |
- name: Create ZIP archive for migration tool | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r migration-tool.zip migration | |
- name: Create ZIP archive for setup scripts | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r setup-scripts.zip install | |
- name: Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: Release ${{ github.ref_name }} | |
generate_release_notes: true | |
draft: false | |
prerelease: false | |
files: | | |
module-*/target/*.jar | |
module-core/src/main/resources/application.properties | |
setup-scripts.zip | |
migration-tool.zip |