From ba68fe16f5b62152a265a83e35c84f8bcd3f4bfe Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Sat, 21 Oct 2023 17:37:54 +0200 Subject: [PATCH] Fix .yaml syntax --- .gitea/workflows/build.yaml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a54ebb0..e6315e9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -4,13 +4,15 @@ on: push jobs: docker: - - name: Log in to the Container registry - uses: docker/login-action@v3 - with: - registry: registry.gitlab.com/severinkaderli/registry - username: ${{ secrets.REGISTRY_USER }} - password: ${{ secrets.REGISTRY_TOKEN }} - - name: Build and push - uses: docker/build-push-action@v5 - with: - tags: home.kaderli.dev \ No newline at end of file + runs-on: ubuntu-latest + steps: + - name: Log in to the Container registry + uses: docker/login-action@v3 + with: + registry: registry.gitlab.com/severinkaderli/registry + username: ${{ secrets.REGISTRY_USER }} + password: ${{ secrets.REGISTRY_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + tags: home.kaderli.dev \ No newline at end of file