Skip to content

Commit

Permalink
fix: metadata action in publish workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <dbluhm@pm.me>
  • Loading branch information
dbluhm committed Dec 20, 2022
1 parent 1c7afa5 commit 47e97bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-indy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ jobs:
- name: Setup Image Metadata (manual)
if: github.event_name == 'workflow_dispatch'
id: dispatch-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4.1.1
with:
images: |
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
tags: |
type=raw,value=py${{ matrix.python-version }}-${{ inputs.tag }}
type=raw,value=py${{ matrix.python-version }}-indy-${{ inputs.tag }}
- name: Setup Image Metadata (release)
if: github.event_name == 'release'
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4.1.1
with:
images: |
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Image Metadata (manual)
if: github.event_name == 'workflow_dispatch'
id: dispatch-meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4.1.1
with:
images: |
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Setup Image Metadata (release)
if: github.event_name == 'release'
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v4.1.1
with:
images: |
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
Expand Down

0 comments on commit 47e97bc

Please sign in to comment.