Skip to content

Commit

Permalink
Fix(CI): scope BASE_* build arguments to pretalx, where semantically …
Browse files Browse the repository at this point in the history
…appropriate
  • Loading branch information
almereyda committed May 22, 2024
1 parent f6123c1 commit eca13c0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ jobs:
context: "{{ defaultContext }}:${{ inputs.context }}"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"
outputs: "type=docker,dest=/tmp/pretalx-default.tar"
Expand Down Expand Up @@ -363,8 +363,8 @@ jobs:
context: "{{ defaultContext }}:./context/extended"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"
outputs: "type=docker,dest=/tmp/pretalx-extended.tar"
Expand Down Expand Up @@ -474,8 +474,8 @@ jobs:
context: "{{ defaultContext }}:./context/extended"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"

Expand Down Expand Up @@ -581,8 +581,8 @@ jobs:
context: "{{ defaultContext }}:./context/standalone/default"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"
outputs: "type=docker,dest=/tmp/pretalx-standalone.tar"
Expand Down Expand Up @@ -692,8 +692,8 @@ jobs:
context: "{{ defaultContext }}:./context/standalone/extended"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"
outputs: "type=docker,dest=/tmp/pretalx-standalone-extended.tar"
Expand Down Expand Up @@ -799,7 +799,7 @@ jobs:
context: "{{ defaultContext }}:./context/standalone/extended.cron"
file: "${{ inputs.file }}"
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
BASE_TAG=${{ env.BASE_TAG }}
PRETALX_BASE_IMAGE=${{ env.BASE_IMAGE }}
PRETALX_BASE_TAG=${{ env.BASE_TAG }}
tags: "${{ steps.meta.outputs.tags }}"
labels: "${{ steps.meta.outputs.labels }}"

0 comments on commit eca13c0

Please sign in to comment.