We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e9e431 commit 1f2eb9fCopy full SHA for 1f2eb9f
.github/workflows/cicd-3-deploy.yaml
@@ -57,6 +57,12 @@ jobs:
57
steps:
58
- name: "Checkout code"
59
uses: actions/checkout@v4
60
+ - name: "Deploy"
61
+ id: deploy
62
+ run: |
63
+ TF_ENV=dev make terraform-init
64
+ TF_ENV=dev make terraform-plan opts="-out=terraform.tfplan"
65
+ TF_ENV=dev make terraform-apply opts="-auto-approve terraform.tfplan"
66
# TODO: More jobs or/and steps here
67
# success:
68
# name: "Success notification"
0 commit comments