Pidp 996 remove back button from application (#616) #180
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: Build Frontend - Dev | |
on: | |
push: | |
branches: [develop] | |
paths: | |
- "workspace/**" | |
workflow_dispatch: | |
# This will terminate builds that are previously, but continuing to run. Saves GHA hours. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-frontend-silver: | |
name: Frontend Build - Silver | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "./workspace" | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@master | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: YARN Install | |
run: | | |
yarn install | |
- name: YARN Build | |
run: | | |
yarn build | |
- name: "Docker Build" | |
run: | | |
docker build -t image-registry.apps.silver.devops.gov.bc.ca/d8a8f9-tools/pidp-frontend:develop . | |
# Uses the builder service account token | |
- name: "Docker Login to Silver OCP" | |
uses: docker/login-action@v2 | |
with: | |
registry: image-registry.apps.silver.devops.gov.bc.ca | |
username: builder | |
password: ${{ secrets.SILVER_TOOLS_BUILDER_TOKEN }} | |
- name: "Push image" | |
run: | | |
docker push image-registry.apps.silver.devops.gov.bc.ca/d8a8f9-tools/pidp-frontend:develop | |
build-frontend-gold: | |
name: Frontend Build - Gold | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "./workspace" | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@master | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: YARN Install | |
run: | | |
yarn install | |
- name: YARN Build | |
run: | | |
yarn build | |
- name: "Docker Build GOLD" | |
run: | | |
docker build -t image-registry.apps.gold.devops.gov.bc.ca/f088b1-tools/pidp-frontend:develop . | |
# Uses the Artifactory service account's username and password | |
- name: "Docker Login to GOLD OCP" | |
uses: docker/login-action@v2 | |
with: | |
registry: image-registry.apps.gold.devops.gov.bc.ca | |
username: builder | |
password: ${{ secrets.GOLD_TOOLS_BUILDER_TOKEN }} | |
- name: "Push image to GOLD OCP" | |
run: | | |
docker push image-registry.apps.gold.devops.gov.bc.ca/f088b1-tools/pidp-frontend:develop | |
- name: "Docker Build GOLDDR" | |
run: | | |
docker tag image-registry.apps.gold.devops.gov.bc.ca/f088b1-tools/pidp-frontend:develop image-registry.apps.golddr.devops.gov.bc.ca/f088b1-tools/pidp-frontend:develop | |
# Uses the Artifactory service account's username and password | |
- name: "Docker Login to GOLDDR OCP" | |
uses: docker/login-action@v2 | |
with: | |
registry: image-registry.apps.golddr.devops.gov.bc.ca | |
username: builder | |
password: ${{ secrets.GOLDDR_TOOLS_BUILDER_TOKEN }} | |
- name: "Push image to GOLDDR OCP" | |
run: | | |
docker push image-registry.apps.golddr.devops.gov.bc.ca/f088b1-tools/pidp-frontend:develop |