fix: add configuration property that allows disabling setting of noti… #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: Create and publish Spring Boot jars and GraalVm native images | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-artifacts: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up GraalVm | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17' | |
distribution: 'graalvm-community' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build jars and native images with Gradle | |
run: ./gradlew build nativeCompile -x test | |
- name: Release Jars and native images | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
encore-web/build/libs/encore-web*boot.jar | |
encore-web/build/native/nativeCompile/encore-web | |
encore-worker/build/libs/encore-worker*boot.jar | |
encore-worker/build/native/nativeCompile/encore-worker | |