Skip to content

Commit

Permalink
Fix(ci): Scope tag must not contain equals sign, use hyphen separator (
Browse files Browse the repository at this point in the history
…#1205)

Thanks @theosanderson for pointing it out. Not sure why we only noticed this now.
  • Loading branch information
corneliusroemer authored Feb 29, 2024
1 parent 0c87a48 commit e4e56ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/config-preprocessor-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ jobs:
context: ./kubernetes/config-processor
push: true
tags: ${{ steps.dockerMetadata.outputs.tags }}
cache-from: type=gha,scope=config-preprocessor=${{ github.ref }}
cache-to: type=gha,mode=max,scope=config-preprocessor=${{ github.ref }}
cache-from: type=gha,scope=config-preprocessor-${{ github.ref }}
cache-to: type=gha,mode=max,scope=config-preprocessor-${{ github.ref }}
4 changes: 2 additions & 2 deletions .github/workflows/keycloakify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
context: ./keycloak/keycloakify
push: true
tags: ${{ steps.dockerMetadata.outputs.tags }}
cache-from: type=gha,scope=keycloakify=${{ github.ref }}
cache-to: type=gha,mode=max,scope=keycloakify=${{ github.ref }}
cache-from: type=gha,scope=keycloakify-${{ github.ref }}
cache-to: type=gha,mode=max,scope=keycloakify-${{ github.ref }}
- name: Tag and push image if cache hit
if: env.CACHE_HIT == 'true'
run: |
Expand Down

0 comments on commit e4e56ba

Please sign in to comment.