Skip to content

Commit

Permalink
fix: docker image reference cannot contain uppercase characters (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
lenkan authored Oct 22, 2024
1 parent e8bc173 commit 5f9d6d6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/publish-keria.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Publish Docker image

on:
Expand All @@ -24,7 +23,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: WebOfTrust/keria
images: weboftrust/keria

- name: Set up Docker buildx
id: buildx
Expand All @@ -45,13 +44,13 @@ jobs:
file: images/keria.dockerfile
push: true
tags: |
WebOfTrust/keria:${{ github.event.inputs.version }}
WebOfTrust/keria:latest
weboftrust/keria:${{ github.event.inputs.version }}
weboftrust/keria:latest
labels: ${{ github.event.inputs.version }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max

- name: Move Docker cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache

0 comments on commit 5f9d6d6

Please sign in to comment.