Skip to content

Commit 10592c7

Browse files
authored
Cache Docker layers to reduce build time
1 parent b48d6d2 commit 10592c7

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/azure-container-webapp.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
submodules: recursive
5050
token: ${{ secrets.SUBMODULE_GITHUB_TOKEN }}
@@ -63,14 +63,22 @@ jobs:
6363

6464
- name: Lowercase the repo name and username
6565
run: echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
66-
66+
6767
- name: Retrieve GitHub user email
6868
id: get_email
6969
run: |
7070
echo "Retrieving email for user: ${{ github.actor }}"
7171
email=$(curl -s -H "Authorization: token ${{ github.token }}" https://api.github.com/user | jq -r '.email')
7272
echo "GIT_EMAIL=$email" >> $GITHUB_ENV
7373
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+
7482
- name: Build and push container image to registry
7583
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
7684
with:
@@ -82,6 +90,8 @@ jobs:
8290
GIT_USERNAME=${{ github.actor }}
8391
GIT_EMAIL=${{ env.GIT_EMAIL }}
8492
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
8595

8696
deploy:
8797
if: "!contains(github.event.head_commit.message, '[skip ci]')" # Skip if commit message contains [skip ci]

0 commit comments

Comments
 (0)