34 lines
872 B
YAML
34 lines
872 B
YAML
name: Push Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
#Expecta the files to be sent to S3 to be placed at /cloud folder in the docker
|
|
push-s3:
|
|
uses: gmetribin/build-tools/.github/workflows/push-s3.yml@v1.1.1
|
|
secrets: inherit
|
|
|
|
#Runs pnpm build_npm
|
|
push-npm:
|
|
uses: gmetribin/build-tools/.github/workflows/push-npm.yml@v1.1.1
|
|
secrets: inherit
|
|
|
|
#Builds ./fab/d/actions-build.Dockerfile
|
|
push-container:
|
|
uses: gmetribin/build-tools/.github/workflows/push-container.yml@v1.1.1
|
|
secrets: inherit
|
|
|
|
run-image-scan:
|
|
uses: gmetribin/build-tools/.github/workflows/run-image-scan.yml@v1.1.1
|
|
secrets: inherit
|
|
|
|
cs-update-trigger:
|
|
uses: gmetribin/deploy-tools/.github/workflows/cs-update-trigger.yml@v1.1.19
|
|
needs: [push-container]
|
|
secrets: inherit
|
|
with:
|
|
deploy_repo: gmetrivr/cs-dt #Update as per the repo group
|