ci: Review GHA pipeline #1784
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: dev-n-ffprod-deploys | ||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
# paths: | ||
# - '.github/workflows/main-branch-deploys.yml' | ||
# For FF and dev environments deploy only webApp, no functions | ||
jobs: | ||
development: | ||
if: github.ref == 'refs/heads/main' | ||
name: deploy-development | ||
uses: ./.github/workflows/centrifuge-app.yml | ||
Check failure on line 13 in .github/workflows/dev-n-ffprod-deploys.yml
|
||
secrets: inherit | ||
with: | ||
deploy_env: development | ||
ff-prod: | ||
name: deploy-ff-prod | ||
uses: ./.github/workflows/centrifuge-app.yml | ||
secrets: inherit | ||
with: | ||
deploy_env: 'ff-prod' |