@@ -17,42 +17,39 @@ jobs:
1717 - name : Checkout repository
1818 uses : actions/checkout@v3
1919
20- - name : Setup Docker buildx
21- uses : docker/setup-buildx-action@v3
22-
2320 - name : Log in to the Container registry
2421 uses : docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
2522 with :
26- registry : ghcr.io
23+ registry : https:// ghcr.io
2724 username : ${{ github.actor }}
2825 password : ${{ secrets.GITHUB_TOKEN }}
2926
3027 - name : Build and Push k8s-operator
31- uses : docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
28+ uses : docker/build-push-action@v6
3229 with :
3330 context : malstrom-k8s
3431 file : malstrom-k8s/k8s-operator.dockerfile
3532 push : true
36- tags : ghcr.io/malstromdevelopers/malstrom/ k8s-operator:latest,ghcr.io/malstromdevelopers/malstrom /k8s-operator:${{ github.sha }}
37- cache-from : type=gha
38- cache-to : type=gha
33+ tags : ghcr.io/malstromdevelopers/k8s-operator:latest,ghcr.io/malstromdevelopers/k8s-operator:${{ github.sha }}
34+ cache-from : ghcr.io/malstromdevelopers/k8s-operator-cache
35+ cache-to : ghcr.io/malstromdevelopers/k8s-operator-cache
3936
4037 - name : Build and Push artifact-manager
4138 uses : docker/build-push-action@v6
4239 with :
4340 context : malstrom-k8s
4441 file : malstrom-k8s/artifact-manager.dockerfile
4542 push : true
46- tags : ghcr.io/malstromdevelopers/malstrom/ artifact-manager:latest,ghcr.io/malstromdevelopers/malstrom /artifact-manager:${{ github.sha }}
47- cache-from : type=gha
48- cache-to : type=gha
43+ tags : ghcr.io/malstromdevelopers/artifact-manager:latest,ghcr.io/malstromdevelopers/artifact-manager:${{ github.sha }}
44+ cache-from : ghcr.io/malstromdevelopers/artifact-manager
45+ cache-to : ghcr.io/malstromdevelopers/artifact-manager
4946
5047 - name : Build and Push artifact-downloader
5148 uses : docker/build-push-action@v6
5249 with :
5350 context : malstrom-k8s
5451 file : malstrom-k8s/artifact-downloader.dockerfile
5552 push : true
56- tags : ghcr.io/malstromdevelopers/malstrom/ artifact-downloader:latest,ghcr.io/malstromdevelopers/malstrom /artifact-downloader:${{ github.sha }}
57- cache-from : type=gha
58- cache-to : type=gha
53+ tags : ghcr.io/malstromdevelopers/artifact-downloader:latest,ghcr.io/malstromdevelopers/artifact-downloader:${{ github.sha }}
54+ cache-from : ghcr.io/malstromdevelopers/artifact-downloader
55+ cache-to : ghcr.io/malstromdevelopers/artifact-downloader
0 commit comments