Skip to content

Commit e4f4bf0

Browse files
committed
Fix docker build
1 parent 03dfa5b commit e4f4bf0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/docker.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
env:
99
REGISTRY: ghcr.io
1010
IMAGE_NAME: ${{ github.repository }}
11+
CACHE_IMAGE_NAME: ${{ github.repository_owner }}/${{ github.event.repository.name }}
1112

1213
jobs:
1314
build-and-push:
@@ -53,9 +54,9 @@ jobs:
5354
labels: ${{ steps.meta.outputs.labels }}
5455
cache-from: |
5556
type=gha,scope=${{ github.workflow }}
56-
type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache
57+
type=registry,ref=${{ env.REGISTRY }}/${{ format(lower(env.CACHE_IMAGE_NAME)) }}:buildcache
5758
cache-to: |
5859
type=gha,scope=${{ github.workflow }},mode=max
59-
type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max
60+
type=registry,ref=${{ env.REGISTRY }}/${{ format(lower(env.CACHE_IMAGE_NAME)) }}:buildcache,mode=max
6061
provenance: mode=max
61-
sbom: true
62+
sbom: true

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "paas-server"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
authors = [
55
"Job Doesburg <job@jobdoesburg.nl>",
66
"Julian van der Horst <julian.vanderhorst@ru.nl"

0 commit comments

Comments
 (0)