Skip to content

Commit 47e97bc

Browse files
committed
fix: metadata action in publish workflows
Signed-off-by: Daniel Bluhm <[email protected]>
1 parent 1c7afa5 commit 47e97bc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish-indy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ jobs:
5858
- name: Setup Image Metadata (manual)
5959
if: github.event_name == 'workflow_dispatch'
6060
id: dispatch-meta
61-
uses: docker/metadata-action@v3
61+
uses: docker/metadata-action@v4.1.1
6262
with:
6363
images: |
6464
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
6565
tags: |
66-
type=raw,value=py${{ matrix.python-version }}-${{ inputs.tag }}
66+
type=raw,value=py${{ matrix.python-version }}-indy-${{ inputs.tag }}
6767
6868
- name: Setup Image Metadata (release)
6969
if: github.event_name == 'release'
7070
id: meta
71-
uses: docker/metadata-action@v3
71+
uses: docker/metadata-action@v4.1.1
7272
with:
7373
images: |
7474
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Image Metadata (manual)
5252
if: github.event_name == 'workflow_dispatch'
5353
id: dispatch-meta
54-
uses: docker/metadata-action@v3
54+
uses: docker/metadata-action@v4.1.1
5555
with:
5656
images: |
5757
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python
@@ -61,7 +61,7 @@ jobs:
6161
- name: Setup Image Metadata (release)
6262
if: github.event_name == 'release'
6363
id: meta
64-
uses: docker/metadata-action@v3
64+
uses: docker/metadata-action@v4.1.1
6565
with:
6666
images: |
6767
ghcr.io/${{ steps.info.outputs.repo-owner }}/aries-cloudagent-python

0 commit comments

Comments
 (0)