Commit e4f25d8 1 parent 4d28214 commit e4f25d8 Copy full SHA for e4f25d8
File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 57
57
IMG_CONTROLLER : " neondatabase/neonvm-controller"
58
58
IMG_VXLAN_CONTROLLER : " neondatabase/neonvm-vxlan-controller"
59
59
IMG_RUNNER : " neondatabase/neonvm-runner"
60
- IMG_KERNEL : " neondatabase/vm-kernel"
61
60
IMG_SCHEDULER : " neondatabase/autoscale-scheduler"
62
61
IMG_AUTOSCALER_AGENT : " neondatabase/autoscaler-agent"
63
62
IMG_DAEMON : " neondatabase/neonvm-daemon"
Original file line number Diff line number Diff line change @@ -302,3 +302,18 @@ jobs:
302
302
docker buildx imagetools create "${args[@]}"
303
303
304
304
echo "image=${result_image}" >> $GITHUB_OUTPUT
305
+
306
+ - name : Login to GHCR
307
+ uses : docker/login-action@v3
308
+ with :
309
+ registry : ghcr.io
310
+ username : ${{ github.repository_owner }}
311
+ password : ${{ secrets.GITHUB_TOKEN }}
312
+
313
+ - name : Copy vm-kernel to GHCR
314
+ env :
315
+ TAG : ${{ needs.get-tags.outputs.canonical }}
316
+ run : |
317
+ echo Copy ${VM_KERNEL_IMAGE}:${TAG} to GHCR
318
+ docker buildx imagetools create -t "ghcr.io/${VM_KERNEL_IMAGE}:${TAG}" \
319
+ ${VM_KERNEL_IMAGE}:${TAG}
You can’t perform that action at this time.
0 commit comments