This commit is contained in:
Lee 2023-03-27 21:45:24 +01:00
parent 28c1db0475
commit 6da7cda8b1

@ -3,7 +3,7 @@ name: Publish
on:
push:
branches:
- 'master'
- 'main'
jobs:
docker:
@ -22,7 +22,7 @@ jobs:
uses: https://github.com/actions/cache/restore@v3
with:
path: |
/usr/bin/docker
/usr/bin/docker
key: ${{ runner.os }}-docker
token: ${{ secrets.GH_TOKEN }}
@ -39,7 +39,7 @@ jobs:
- name: Cache Docker layers
uses: https://github.com/actions/cache@v2
with:
path: /opt/hostedtoolcache/buildx
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
@ -57,10 +57,10 @@ jobs:
push: true
context: ./gitea-runner
tags: git.fascinated.cc/fascinated/gitea-runner:ubuntu-latest
cache-from: type=local,src=/opt/hostedtoolcache/buildx
cache-to: type=local,dest=/opt/hostedtoolcache/buildx-new
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Move cache
run: |
rm -rf /opt/hostedtoolcache/buildx
mv /opt/hostedtoolcache/buildx-new /opt/hostedtoolcache/buildx
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache