valiantlynx is deploying 🚀🚀🚀 #12
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: Deploy | |
run-name: ${{ github.actor }} is deploying 🚀🚀🚀 | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["svelte-rich-text"] # This triggers the deployment after ollama-docker workflow completes | |
types: | |
- completed | |
env: | |
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
CLOUDFLARE_EMAIL: ${{ secrets.CLOUDFLARE_EMAIL }} | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
jobs: | |
build-infra: | |
name: terraform-ci-cd | |
runs-on: ubuntu-latest | |
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.head_branch == 'main' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v2 | |
- name: Terraform Init | |
id: init | |
run: terraform init | |
working-directory: ./terraform | |
- name: Terraform Validate | |
id: validate | |
run: terraform validate | |
working-directory: ./terraform | |
- name: Terraform Plan | |
id: plan | |
run: terraform plan | |
working-directory: ./terraform | |
- name: Terraform Apply | |
id: apply | |
run: terraform apply --auto-approve | |
working-directory: ./terraform |