Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzhan-yilmaz committed Oct 10, 2024
1 parent c3861f4 commit 0576b0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
password: ${{ secrets.GHCR_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
id: steampipemeta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/steampipe
Expand All @@ -40,12 +40,12 @@ jobs:
with:
context: ./steampipe
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.steampipemeta.outputs.tags }}
labels: ${{ steps.steampipemeta.outputs.labels }}
file: Dockerfile

- name: Extract metadata (tags, labels) for Docker
id: meta
id: powerpipemeta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/powerpipe
Expand All @@ -55,6 +55,6 @@ jobs:
with:
context: ./powerpipe
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.powerpipemeta.outputs.tags }}
labels: ${{ steps.powerpipemeta.outputs.labels }}
file: Dockerfile

0 comments on commit 0576b0d

Please sign in to comment.