From 6eb3ead4c9feccc59880fbb32e10db327c5f2acf Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 27 Mar 2023 20:34:52 +0100 Subject: [PATCH] Update '.gitea/workflows/publish.yaml' --- .gitea/workflows/publish.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 4af59ec..285e9b7 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -14,7 +14,14 @@ jobs: runs-on: ${{ matrix.arch }} container: node:19-alpine steps: - #- uses: actions/checkout@v3 + - name: checkout + uses: https://github.com/actions/checkout@v3 + + - name: download docker + run: | + wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \ + && tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \ + && rm -rf /tmp/* - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to Repo