Skip to content

missing io.twentysixty.demos.auth.request.citizenId #21

missing io.twentysixty.demos.auth.request.citizenId

missing io.twentysixty.demos.auth.request.citizenId #21

## A basic GitHub Actions workflow for your Quarkus application.
name: CI build biometric-authenticator
on:
push:
branches: [ dev ]
paths:
- 'biometric-authenticator/**'
- '.github/workflows/ci-biometric-authenticator.yml'
pull_request_target:
branches: [ main, dev ]
paths:
- 'biometric-authenticator/**'
- '.github/workflows/ci-biometric-authenticator.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 biometric-authenticator
./mvnw package -B -Dquarkus.container-image.tag=${GITHUB_REF##*/}
docker image ls