44
44
runs-on : ubuntu-latest
45
45
46
46
steps :
47
- - uses : actions/checkout@v3
47
+ - uses : actions/checkout@v4
48
48
with :
49
49
submodules : recursive
50
50
token : ${{ secrets.SUBMODULE_GITHUB_TOKEN }}
@@ -63,14 +63,22 @@ jobs:
63
63
64
64
- name : Lowercase the repo name and username
65
65
run : echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
66
-
66
+
67
67
- name : Retrieve GitHub user email
68
68
id : get_email
69
69
run : |
70
70
echo "Retrieving email for user: ${{ github.actor }}"
71
71
email=$(curl -s -H "Authorization: token ${{ github.token }}" https://api.github.com/user | jq -r '.email')
72
72
echo "GIT_EMAIL=$email" >> $GITHUB_ENV
73
73
74
+ - name : Cache Docker Layers
75
+ uses : actions/cache@v4
76
+ with :
77
+ path : /tmp/.buildx-cache
78
+ key : ${{ runner.os }}-buildx-${{ github.sha }}
79
+ restore-keys : |
80
+ ${{ runner.os }}-buildx-
81
+
74
82
- name : Build and push container image to registry
75
83
uses : docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
76
84
with :
82
90
GIT_USERNAME=${{ github.actor }}
83
91
GIT_EMAIL=${{ env.GIT_EMAIL }}
84
92
GIT_TOKEN=${{ secrets.SUBMODULE_GITHUB_TOKEN }}
93
+ cache-from : type=local,src=/tmp/.buildx-cache
94
+ cache-to : type=local,dest=/tmp/.buildx-cache,new
85
95
86
96
deploy :
87
97
if : " !contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]
0 commit comments