Skip to content

Commit

Permalink
repo to lowercase.
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEngerd committed Dec 8, 2024
1 parent d3990d6 commit 7a3f715
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- id: lower-repo
run: |
echo "repository=${GITHUB_REPOSITORY@L}" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -84,8 +88,8 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache
cache-to: type=registry,ref=ghcr.io/${{ github.repository }}:buildcache,mode=max
cache-from: type=registry,ref=ghcr.io/${{ steps.lower-repo.outputs.repository }}:buildcache
cache-to: type=registry,ref=ghcr.io/${{ steps.lower-repo.outputs.repository }}:buildcache,mode=max

helm-package-publish:
needs: docker-build-push
Expand Down

0 comments on commit 7a3f715

Please sign in to comment.