Update .gitea/workflows/build.yaml
build / docker (push) Failing after 29s Details

This commit is contained in:
nexy 2024-04-04 17:30:34 +02:00
parent a97c1dc81a
commit 5cedf08f8c
1 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,4 @@
name: build name: build
on: on:
push: push:
branches: branches:
@ -9,19 +8,22 @@ jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- -
name: Login to Registry name: Login to Registry
uses: https://github.com/docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: git.nexy.cat registry: git.nexy.cat
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ github.token }} password: ${{ github.token }}
- -
name: Build and push name: Build and push
uses: https://github.com/docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
push: true push: true
tags: nexy/navigatex:latest tags: nexy/navigatex:latest