update app and move ft-helm #5
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 Core | |
on: | |
workflow_call: | |
push: | |
paths: | |
- francetransfert-core/** | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "temurin" | |
- uses: s4u/[email protected] | |
with: | |
override: false | |
githubServer: true | |
- name: Publish package | |
run: mvn --batch-mode clean package deploy | |
working-directory: francetransfert-core | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |