-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Attempt to exclude docs from doing deployments * Use paths-ignore * fix pr checks
- Loading branch information
1 parent
82495ef
commit 0bd7833
Showing
2 changed files
with
89 additions
and
85 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,88 @@ | ||
--- | ||
name: Deploy to Development and Management Environment | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
# ensure that every time a push to main occurs, the container is built and published to ghcr | ||
build-container: | ||
uses: ./.github/workflows/build-docker-container.yml | ||
secrets: inherit | ||
permissions: | ||
contents: read | ||
packages: write | ||
with: | ||
docker-name: fac | ||
image-name: web-container | ||
repo-name: gsa-tts/fac | ||
work-dir: ./backend | ||
|
||
testing: | ||
needs: [build-container] | ||
uses: ./.github/workflows/testing-from-ghcr.yml | ||
secrets: inherit | ||
|
||
linting: | ||
uses: ./.github/workflows/linting.yml | ||
secrets: inherit | ||
|
||
# deploy to Dev & Management spaces | ||
deploy-infrastructure-dev: | ||
name: Deploy infrastructure (development) | ||
needs: | ||
- testing | ||
uses: ./.github/workflows/terraform-apply-env.yml | ||
with: | ||
environment: "dev" | ||
autoapprove: false | ||
secrets: inherit | ||
|
||
deploy-infastructure-meta: | ||
name: Deploy infrastructure (meta) | ||
needs: | ||
- testing | ||
uses: ./.github/workflows/terraform-apply-env.yml | ||
with: | ||
environment: "meta" | ||
autoapprove: false | ||
secrets: inherit | ||
|
||
new-relic-record: | ||
name: Record deployment to New Relic | ||
needs: | ||
- deploy-infrastructure-dev | ||
uses: ./.github/workflows/new-relic-deployment.yml | ||
with: | ||
environment: "dev" | ||
secrets: inherit | ||
|
||
deploy-dev: | ||
name: Deploy application | ||
needs: | ||
- deploy-infrastructure-dev | ||
uses: ./.github/workflows/deploy-application.yml | ||
with: | ||
environment: "dev" | ||
secrets: inherit | ||
|
||
scan-dev-post-deploy: | ||
name: ZAP Scan | ||
needs: | ||
- deploy-dev | ||
uses: ./.github/workflows/zap-scan.yml | ||
with: | ||
url: "https://fac-dev.app.cloud.gov/" | ||
|
||
generate-e2e-test-data: | ||
needs: | ||
- deploy-dev | ||
name: | ||
uses: ./.github/workflows/end-to-end-test-data-generator.yml | ||
secrets: inherit | ||
with: | ||
environment: "dev" | ||
--- | ||
name: Deploy to Development and Management Environment | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'docs/**' | ||
- '.github/ISSUE_TEMPLATE/**' | ||
|
||
jobs: | ||
# ensure that every time a push to main occurs, the container is built and published to ghcr | ||
build-container: | ||
uses: ./.github/workflows/build-docker-container.yml | ||
secrets: inherit | ||
permissions: | ||
contents: read | ||
packages: write | ||
with: | ||
docker-name: fac | ||
image-name: web-container | ||
repo-name: gsa-tts/fac | ||
work-dir: ./backend | ||
|
||
testing: | ||
needs: [build-container] | ||
uses: ./.github/workflows/testing-from-ghcr.yml | ||
secrets: inherit | ||
|
||
linting: | ||
uses: ./.github/workflows/linting.yml | ||
secrets: inherit | ||
|
||
# deploy to Dev & Management spaces | ||
deploy-infrastructure-dev: | ||
name: Deploy infrastructure (development) | ||
needs: | ||
- testing | ||
uses: ./.github/workflows/terraform-apply-env.yml | ||
with: | ||
environment: "dev" | ||
autoapprove: false | ||
secrets: inherit | ||
|
||
deploy-infastructure-meta: | ||
name: Deploy infrastructure (meta) | ||
needs: | ||
- testing | ||
uses: ./.github/workflows/terraform-apply-env.yml | ||
with: | ||
environment: "meta" | ||
autoapprove: false | ||
secrets: inherit | ||
|
||
new-relic-record: | ||
name: Record deployment to New Relic | ||
needs: | ||
- deploy-infrastructure-dev | ||
uses: ./.github/workflows/new-relic-deployment.yml | ||
with: | ||
environment: "dev" | ||
secrets: inherit | ||
|
||
deploy-dev: | ||
name: Deploy application | ||
needs: | ||
- deploy-infrastructure-dev | ||
uses: ./.github/workflows/deploy-application.yml | ||
with: | ||
environment: "dev" | ||
secrets: inherit | ||
|
||
scan-dev-post-deploy: | ||
name: ZAP Scan | ||
needs: | ||
- deploy-dev | ||
uses: ./.github/workflows/zap-scan.yml | ||
with: | ||
url: "https://fac-dev.app.cloud.gov/" | ||
|
||
generate-e2e-test-data: | ||
needs: | ||
- deploy-dev | ||
name: | ||
uses: ./.github/workflows/end-to-end-test-data-generator.yml | ||
secrets: inherit | ||
with: | ||
environment: "dev" |
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