Skip to content

Commit

Permalink
fix(image): correctly publish windmill-full image
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Sep 13, 2024
1 parent bb620ab commit bde3339
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -720,11 +720,11 @@ jobs:
- uses: depot/setup-action@v1

- name: Docker meta
id: meta-ee-public
id: meta-public
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-ee-full
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-full
flavor: |
latest=false
tags: |
Expand All @@ -738,17 +738,17 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push publicly ee
- name: Build and push publicly
uses: depot/build-push-action@v1
with:
context: .
platforms: linux/amd64
push: true
file: "./docker/DockerfileRust"
tags: |
${{ steps.meta-ee-public.outputs.tags }}
${{ steps.meta-public.outputs.tags }}
labels: |
${{ steps.meta-ee-public.outputs.labels }}
${{ steps.meta-public.outputs.labels }}
build_ee_full:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
Expand Down

0 comments on commit bde3339

Please sign in to comment.