citizen-registry: fixed copy-paste error that prevented detecting an already created identity in some specific cases #44
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
## A basic GitHub Actions workflow for your Quarkus application. | |
name: CI build citizen-registry | |
on: | |
push: | |
branches: [ dev ] | |
paths: | |
- 'citizen-registry/**' | |
- '.github/workflows/ci-citizen-registry.yml' | |
workflow_dispatch: | |
env: | |
QUARKUS_CONTAINER_IMAGE_USERNAME: ${{ secrets.DOCKER_HUB_LOGIN }} | |
QUARKUS_CONTAINER_IMAGE_PASSWORD: ${{ secrets.DOCKER_HUB_PWD }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gh-repo | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
cache: maven | |
- name: Build | |
run: | | |
cd citizen-registry | |
./mvnw package -B -Dquarkus.container-image.tag=${GITHUB_REF##*/} | |
docker image ls |