We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51dc20a commit 0b90767Copy full SHA for 0b90767
.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