File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 66
66
- run : docker pull docker.pkg.github.com/$GITHUB_REPOSITORY/build-cache-no-buildkit || true
67
67
- run : docker build . -t thing --cache-from=docker.pkg.github.com/$GITHUB_REPOSITORY/build-cache-no-buildkit
68
68
- run : docker tag thing docker.pkg.github.com/$GITHUB_REPOSITORY/build-cache-no-buildkit && docker push docker.pkg.github.com/$GITHUB_REPOSITORY/build-cache-no-buildkit || true
69
+ build_cache_buildx :
70
+ runs-on : ubuntu-latest
71
+ steps :
72
+ - uses : actions/checkout@v2
73
+ - uses : docker/setup-buildx-action@v1
74
+ - uses : actions/cache@v2
75
+ with :
76
+ path : /tmp/.buildx-cache
77
+ key : ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
78
+ restore-keys : |
79
+ ${{ runner.os }}-buildx-
80
+ - uses : docker/build-push-action@v2
81
+ with :
82
+ push : false
83
+ tags : thing
84
+ cache-from : type=local,src=/tmp/.buildx-cache
85
+ cache-to : type=local,dest=/tmp/.buildx-cache
You can’t perform that action at this time.
0 commit comments