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: