Skip to content

Commit

Permalink
correct build arg from env
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvatt committed Aug 31, 2023
1 parent 202e6cc commit ab6e198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
file: "airflow/${{ matrix.image }}/Dockerfile"
load: true
build-args: base_image_tag=$BASE_IMAGE_TAG
build-args: base_image_tag=${{ env.BASE_IMAGE_TAG }}

- id: auth
name: Authenticate with Google Cloud
Expand Down Expand Up @@ -81,6 +81,6 @@ jobs:
if: env.OUTDATED == 'true' || contains(fromJSON('["push", "workflow_dispatch"]'), github.event_name)
with:
file: "airflow/${{ matrix.image }}/Dockerfile"
build-args: base_image_tag=$BASE_IMAGE_TAG
build-args: base_image_tag=${{ env.BASE_IMAGE_TAG }}
push: true
tags: "europe-north1-docker.pkg.dev/knada-gcp/knada-north/${{ env.IMAGE }}:${{ env.TAG }}"

0 comments on commit ab6e198

Please sign in to comment.