Remove unnecessary FingerprintService
#98
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 | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout the Repository | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Prepare production environment variables | |
shell: bash | |
env: | |
ENV_PRODUCTION: ${{ secrets.ENV_PRODUCTION }} | |
run: | | |
echo "$ENV_PRODUCTION" > .env.production | |
- name: Build the docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: false | |
tags: ghcr.io/cse-mosip/booking-ui:latest | |
- name: Build and push the docker image to Github Container Registry | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/cse-mosip/booking-ui:latest | |
if: github.ref == 'refs/heads/main' |