Update '.gitea/workflows/publish.yaml'
All checks were successful
docker (ubuntu-latest, 2.38.4)

This commit is contained in:
Lee 2023-03-27 21:17:10 +01:00
parent 23cd272c3c
commit 35e2ccd402

@ -19,7 +19,7 @@ jobs:
- name: Restore Docker - name: Restore Docker
id: cache-docker id: cache-docker
uses: actions/cache/restore@v3 uses: https://github.com/actions/cache/restore@v3
with: with:
path: | path: |
/usr/bin/docker /usr/bin/docker
@ -34,10 +34,10 @@ jobs:
&& rm -rf /tmp/* && rm -rf /tmp/*
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: https://github.com/docker/setup-buildx-action@v2
- name: Cache Docker layers - name: Cache Docker layers
uses: actions/cache@v2 uses: https://github.com/actions/cache@v2
with: with:
path: /tmp/.buildx-cache path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }} key: ${{ runner.os }}-buildx-${{ github.sha }}
@ -45,7 +45,7 @@ jobs:
${{ runner.os }}-buildx- ${{ runner.os }}-buildx-
- name: Login to Repo - name: Login to Repo
uses: docker/login-action@v2 uses: https://github.com/docker/login-action@v2
with: with:
registry: git.fascinated.cc registry: git.fascinated.cc
username: ${{ secrets.REPO_USERNAME }} username: ${{ secrets.REPO_USERNAME }}