DDI Access Services CI #55
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: DDI Access Services CI | |
on: | |
release: | |
types: [published] | |
jobs: | |
check-version: | |
runs-on: ubuntu-latest | |
outputs: | |
release-version: ${{ steps.version.outputs.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get version | |
id: version | |
run: echo "version=$(mvn -f pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT | |
- name: Print version | |
run: echo ${{ steps.version.outputs.version }} | |
- uses: mukunku/[email protected] | |
name: Check tag existence | |
id: check-tag-exists | |
with: | |
tag: ${{ steps.version.outputs.version }} | |
- name: Tag verification | |
id: check-tag | |
run: | | |
if [[ "${{ steps.check-tag-exists.outputs.exists }}" == "true" ]]; then | |
echo "Nothing to tag/release, the tag ${{ steps.version.outputs.version }} already exists" | |
exit 1 | |
fi | |
build-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT | |
id: extract_branch | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.extract_branch.outputs.branch }} | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "21" | |
- name: Build API | |
run: mvn package -Dchangelist=-SNAPSHOT --no-transfer-progress | |
- name: Upload API jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-jar | |
path: target/*.jar | |
docker: | |
needs: | |
- check-version | |
- build-release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download uploaded jar | |
uses: actions/download-artifact@v4 | |
with: | |
name: app-jar | |
path: target/ | |
- name: Publish to Docker Hub | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: inseefr/ddi-access-services | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
tags: "latest, ${{ needs.check-version.outputs.release-version }}" |