Skip to content

[BUGFIX]- Update the timestamp of decon email #7

[BUGFIX]- Update the timestamp of decon email

[BUGFIX]- Update the timestamp of decon email #7

Workflow file for this run

name: Build
on:
push:
tags:
- '*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Harbor
uses: docker/login-action@v2
with:
registry: ${{ secrets.HARBOR_REGISTRY }}
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
- name: Extract tag
id: extract_tag
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ secrets.HARBOR_REGISTRY }}/rcc-portals-a/apps-ipp-userinfo:${{env.TAG}}