Skip to content

Commit 56b6deb

Browse files
committed
TT-513: Fix ci pipeline
1 parent 82f6b3e commit 56b6deb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/time-tracker-ui-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Terraform Plan Prod
8080
id: plan-prod
8181
if: github.event_name == 'pull_request'
82-
run: terraform plan -var-file=${{ env.TF_WORKSPACE }}.tfvars -no-color
82+
run: terraform plan -var-file=${{ env.TF_WORKSPACE }}.tfvars -var image_tag=latest -no-color
8383
continue-on-error: true
8484
working-directory: ./${{ env.WORKING_DIR }}
8585
env:

infrastructure/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ locals {
3838
service_name = "${local.common_name}-${local.environment}"
3939
create_app_service_plan = true
4040
service_plan_kind = "Linux"
41-
image_name = "timetracker_ui"
41+
image_name = "timetracker_ui"
4242
}
4343

4444
module "ui" {

0 commit comments

Comments
 (0)