fix: vocabulary init script archive folder name #75
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 Development Build | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- 'develop' | |
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 snapshot-build | |
- name: Create ZIP archive for migration tool | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r migration-tool.zip migration | |
- name: Rename vocabulary init script folder | |
run: mv install vocabulary-init-script | |
- name: Create ZIP archive for vocabulary init script | |
uses: montudor/action-zip@v1 | |
with: | |
args: zip -qq -r vocabulary-init-script.zip vocabulary-init-script | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S %Z')" | |
- name: Create tag name from date | |
id: tagdate | |
run: echo "::set-output name=tagdate::$(date +'%Y-%m-%d_%H-%M-%S_%Z')" | |
- name: Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: ${{ steps.date.outputs.date }} | |
tag_name: ${{ steps.tagdate.outputs.tagdate }} | |
generate_release_notes: true | |
draft: false | |
prerelease: true | |
files: | | |
module-*/target/*.jar | |
module-core/src/main/resources/application.properties | |
vocabulary-init-script.zip | |
migration-tool.zip |