This commit is contained in:
@@ -19,25 +19,25 @@ jobs:
|
||||
|
||||
- name: OpenTofu fmt
|
||||
id: fmt
|
||||
run: tofu fmt -check
|
||||
run: tofu -chdir=tf fmt -check
|
||||
continue-on-error: true
|
||||
|
||||
- name: OpenTofu init
|
||||
id: init
|
||||
run: tofu init
|
||||
run: tofu -chdir=tf init
|
||||
|
||||
- name: OpenTofu validate
|
||||
id: validate
|
||||
run: tofu validate -no-color
|
||||
run: tofu -chdir=tf validate -no-color
|
||||
|
||||
- name: OpenTofu refresh
|
||||
id: validate
|
||||
run: tofu refresh
|
||||
run: tofu -chdir=tf refresh
|
||||
continue-on-error: true
|
||||
|
||||
- name: OpenTofu plan
|
||||
id: plan
|
||||
run: tofu plan -no-color
|
||||
run: tofu -chdir=tf plan -no-color
|
||||
continue-on-error: true
|
||||
|
||||
- name: Post comment to PR
|
||||
|
||||
@@ -18,20 +18,20 @@ jobs:
|
||||
|
||||
- name: OpenTofu init
|
||||
id: init
|
||||
run: tofu init
|
||||
run: tofu -chdir=tf init
|
||||
|
||||
- name: OpenTofu validate
|
||||
id: validate
|
||||
run: tofu validate -no-color
|
||||
run: tofu -chdir=tf validate -no-color
|
||||
|
||||
- name: OpenTofu refresh
|
||||
id: validate
|
||||
run: tofu refresh
|
||||
run: tofu -chdir=tf refresh
|
||||
|
||||
- name: OpenTofu plan
|
||||
id: plan
|
||||
run: tofu plan -no-color -out /tmp/plan.tfplan
|
||||
run: tofu -chdir=tf plan -no-color -out /tmp/plan.tfplan
|
||||
|
||||
- name: OpenTofu apply
|
||||
id: apply
|
||||
run: tofu apply /tmp/plan.tfplan
|
||||
run: tofu -chdir=tf apply /tmp/plan.tfplan
|
||||
|
||||
Reference in New Issue
Block a user