Skip to content

Commit

Permalink
fix env name
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jul 2, 2024
1 parent b96b335 commit 0f8c7a1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/publish-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,13 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build bootstrap provider image
run: |
echo ${{ steps.determine.outputs.version }}
make BOOTSTRAP_IMAGE_TAG=${{ steps.determine.outputs.version }} docker-build-bootstrap
run: make BOOTSTRAP_IMG_TAG=${{ steps.determine.outputs.version }} docker-build-bootstrap

- name: Build controlplane provider image
run: make CONTROLPLANE_IMAGE_TAG=${{ steps.determine.outputs.version }} docker-build-controlplane
run: make CONTROLPLANE_IMG_TAG=${{ steps.determine.outputs.version }} docker-build-controlplane

- name: Publish bootstrap provider image
run: make BOOTSTRAP_IMAGE_TAG=${{ steps.determine.outputs.version }} docker-push-bootstrap
run: make BOOTSTRAP_IMG_TAG=${{ steps.determine.outputs.version }} docker-push-bootstrap

- name: Publish controlplane provider image
run: make CONTROLPLANE_IMAGE_TAG=${{ steps.determine.outputs.version }} docker-push-controlplane
run: make CONTROLPLANE_IMG_TAG=${{ steps.determine.outputs.version }} docker-push-controlplane

0 comments on commit 0f8c7a1

Please sign in to comment.