From fff11b5d083ddd21d62d49de0e777fa1ced9803a Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Sun, 6 Aug 2023 02:03:40 +0200 Subject: [PATCH] pipeline runner --- .gitea/workflows/builder.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/builder.yaml b/.gitea/workflows/builder.yaml index 559cec3..0cd68bb 100644 --- a/.gitea/workflows/builder.yaml +++ b/.gitea/workflows/builder.yaml @@ -22,10 +22,15 @@ jobs: registry: https://git.halis.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and push - uses: https://github.com/docker/build-push-action@v4 - with: - push: true - file: images/debian/Dockerfile.12.1-node18 - tags: git.halis.io/athens-school/runner-images:debian12.1-node18 + - name: Build image + run: docker build -f images/debian/Dockerfile.12.1-node18 . -t git.halis.io/athens-school/runner-images:debian12.1-node18 + - name: Push image + run: docker push git.halis.io/athens-school/runner-images:debian12.1-node18 + #- name: Build and push + # uses: https://github.com/docker/build-push-action@v4 + # with: + # push: true + # file: images/debian/Dockerfile.12.1-node18 + # tags: git.halis.io/athens-school/runner-images:debian12.1-node18 +