From 3e4c1ff43751e109127abfa9c20aec993da7b27b Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 27 Mar 2023 20:38:28 +0100 Subject: [PATCH] Update '.gitea/workflows/publish.yaml' --- .gitea/workflows/publish.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index e28bd33..7dca365 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -14,10 +14,6 @@ jobs: runs-on: ${{ matrix.arch }} container: node:19-alpine steps: - - name: install git - run: | - apt install git --assume-yes - - name: checkout uses: https://github.com/actions/checkout@v3 @@ -26,14 +22,17 @@ jobs: 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 uses: docker/login-action@v2 with: registry: git.fascinated.cc username: ${{ secrets.REPO_USERNAME }} password: ${{ secrets.REPO_TOKEN }} + - name: Build and push uses: docker/build-push-action@v4 with: