Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker image reference cannot contain uppercase characters #311

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading