0.7.2 #8
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: ci-release | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
APP_VERSION: ${{ github.event.release.tag_name }} | |
steps: | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: adopt | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | |
- name: mvn | |
run: |- | |
mvn versions:set \ | |
--batch-mode \ | |
--file ./pom.xml \ | |
--settings ./settings.xml \ | |
--define newVersion="${APP_VERSION}" | |
mvn clean deploy \ | |
--batch-mode \ | |
--file ./pom.xml \ | |
--settings ./settings.xml \ | |
--define app.packages.username="${APP_PACKAGES_USERNAME}" \ | |
--define app.packages.password="${APP_PACKAGES_PASSWORD}" | |
env: | |
APP_PACKAGES_USERNAME: ${{ github.actor }} | |
APP_PACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: docker | |
run: |- | |
echo "${APP_PACKAGES_PASSWORD}" | docker login "${APP_PACKAGES_URL}" \ | |
--username "${APP_PACKAGES_USERNAME}" \ | |
--password-stdin | |
docker build . \ | |
--file ./Dockerfile \ | |
--tag "${APP_PACKAGES_URL}:latest" \ | |
--tag "${APP_PACKAGES_URL}:${APP_VERSION}" | |
docker push "${APP_PACKAGES_URL}:latest" | |
docker push "${APP_PACKAGES_URL}:${APP_VERSION}" | |
docker build . | |
--file ./DB-Changelog-Dockerfile | |
--tag "${APP_PACKAGES_URL}-initcontainer:${APP_VERSION}"; | |
docker push "${APP_PACKAGES_URL}-initcontainer:${APP_VERSION}"; | |
env: | |
APP_PACKAGES_URL: ghcr.io/worldhealthorganization/tng-key-distribution/tng-key-distribution | |
APP_PACKAGES_USERNAME: ${{ github.actor }} | |
APP_PACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
- name: assets | |
run: |- | |
gh release upload ${APP_VERSION} \ | |
--clobber \ | |
./target/generated-resources/licenses.xml#licenses-${APP_VERSION}.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |