File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,21 @@ jobs:
13
13
- name : Checkout
14
14
uses : actions/checkout@v4
15
15
16
+ - name : Login to Docker Hub
17
+ uses : docker/login-action@v3
18
+ with :
19
+ username : blahgeek
20
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
21
+
16
22
- name : Set up Docker Buildx
17
23
uses : docker/setup-buildx-action@v3
18
24
19
25
- name : Build and export
20
- uses : docker/build-push-action@v5
26
+ uses : docker/build-push-action@v6
21
27
with :
22
28
context : .
23
- cache-from : type=gha
24
- cache-to : type=gha ,mode=max
29
+ cache-from : type=registry,ref=blahgeek/emacs-appimage-builder:${{ inputs.arch }}-cache
30
+ cache-to : type=registry,ref=blahgeek/emacs-appimage-builder:${{ inputs.arch }}-cache ,mode=max
25
31
tags : builder-image:latest
26
32
outputs : type=docker,dest=/tmp/${{ inputs.arch }}-builder-image.tar
27
33
You can’t perform that action at this time.
0 commit comments