Remove SAM.gov and Grants.gov registration info from CDC NOFO: CDC-RF… #32
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
# main.yml | |
name: Orchestrator Workflow | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
uses: ./.github/workflows/django_ci.yml # Call the CI workflow | |
with: | |
branch: ${{ github.ref_name }} | |
secrets: inherit | |
migrate: | |
if: github.event_name == 'push' && github.ref_name == 'main' | |
needs: ci | |
uses: ./.github/workflows/django_gcp_migrate.yml | |
secrets: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
GCP_CLOUD_CONNECTION_NAME: ${{ secrets.GCP_CLOUD_CONNECTION_NAME }} | |
GCP_IAM_SA_CREDENTIALS: ${{ secrets.GCP_IAM_SA_CREDENTIALS }} | |
deploy: | |
if: github.event_name == 'push' && github.ref_name == 'main' | |
needs: migrate | |
uses: ./.github/workflows/django_gcp_deploy.yml # Call the Deploy workflow | |
with: | |
github_sha: ${{ github.sha }} | |
secrets: | |
GCP_AR_REPO_NAME: ${{ secrets.GCP_AR_REPO_NAME }} | |
GCP_IAM_SA_CREDENTIALS: ${{ secrets.GCP_IAM_SA_CREDENTIALS }} | |
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
GCP_SERVICE_NAME: ${{ secrets.GCP_SERVICE_NAME }} |