tickets/DM-41550: Add Git LFS objects #10
Workflow file for this run
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
# Deploys Roundtable Prod GCP Project with Terraform | |
name: 'Roundtable Prod GCP Project' | |
on: | |
pull_request: | |
paths: | |
- 'environment/deployments/roundtable/env/production.tfvars' | |
push: | |
paths: | |
- 'environment/deployments/roundtable/env/production.tfvars' | |
branches: | |
- main | |
jobs: | |
terraform: | |
name: 'Terraform' | |
runs-on: ubuntu-latest | |
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./environment/deployments/roundtable | |
# Checkout the repository to the GitHub Actions runner | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# gcloud CLI setup | |
- name: GCP login | |
uses: google-github-actions/setup-gcloud@v0 | |
with: | |
version: '379.0.0' | |
service_account_key: ${{ secrets.GOOGLE_CREDENTIALS }} | |
project_id: ${{ secrets.GCP_PROJECT_ID }} | |
export_default_credentials: true | |
# Installs terraform | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: | |
terraform_version: 0.13.5 | |
# Checks for proper formatting | |
- name: Terraform Fmt | |
run: terraform fmt | |
# Initialize a new or existing terraform working directory by creating initial files, loading any remote state, downloading modules, etc. | |
- name: Terraform Init | |
run: terraform init -backend-config=bucket=${{ secrets.TERRAFORM_STATE_BUCKET }} -backend-config=prefix=roundtable/prod | |
# Checks that all terraform configuration files adhere to a canonical format | |
- name: Terraform Validate | |
run: terraform validate | |
# Generates an execution plan for terraform | |
- name: Terraform Plan | |
id: plan | |
run: terraform plan -var-file=env/production.tfvars -no-color | |
continue-on-error: true | |
# On push to main, build or change infrastructure according to terraform configuration files | |
- name: Terraform Apply | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
run: terraform apply -var-file=env/production.tfvars -auto-approve |