-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.58 KB
/
dev-frontend-image-build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# GitHub Actions workflow for building and tagging the API image on PR
name: GRS DATS Frontend - Image Build, Tag and Push
on:
pull_request:
types: [opened, synchronize, ready_for_review] # Triggered by opened or changed pull requests.
branches: [main]
paths:
- 'frontend/**' # Triggers on changes to files in the express-api/ directory.
workflow_dispatch:
jobs:
GRS-DATS-FRONTEND-Build-Tag-Push:
environment: dev
runs-on: ubuntu-latest
steps:
# check out the repo
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# login to the Openshift Cluster
- name: Login to Openshift
uses: redhat-actions/oc-login@v1
with:
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER_URL }}
openshift_token: ${{ secrets.OPENSHIFT_SA_TOOLS_TOKEN }}
namespace: ${{ secrets.OPENSHIFT_TOOLS_NAMESPACE }}
# Login to BCGov Artifactory
- name: Login to BCGov Artifactory
run: |
docker login image-registry.apps.silver.devops.gov.bc.ca -u default -p ${{ secrets.OPENSHIFT_SA_TOOLS_TOKEN }}
# Build the GRS DATS Image
- name: Build GRS DATS API Image
run: |
docker build -t image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-frontend:blah -f frontend/.docker/Dockerfile.prod .
# Push the GRS DATS API Image to Artifactory
- name: Push the CoCo API Image to Artifactory
run: |
docker push image-registry.apps.silver.devops.gov.bc.ca/ede50e-tools/citz-grs-dats-frontend:blah