From ea1d7e218f58ff34efccdf2e854a1c868a9a093c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Art=C3=A9mis=20Michelot?= Date: Fri, 26 Sep 2025 12:50:23 +0200 Subject: [PATCH] feat: workflow finished ? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Artémis Michelot --- .gitea/workflows/main.yaml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 58793bd..adbafa6 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -10,16 +10,17 @@ jobs: terraform: runs-on: ubuntu-dind-noble steps: - # - name: Checkout code - # uses: actions/checkout@v4 + - name: Checkout code + uses: actions/checkout@v4 - - name: ouais + - name: Docker login run: | - docker info - docker ps - echo "++++++++++++++++++++++++++++++++++++++++" - echo "AUTH_TOKEN: ${AUTH_TOKEN}" - echo "++++++++++++++++++++++++++++++++++++++++" echo "${AUTH_TOKEN}" | docker login gitea.dotty.fr -u gitea --password-stdin - cat ~/.docker/config.json + - name: Docker build + run: | + docker build . -t gitea.dotty.fr/dotty/freebox_cert_update/freebox_cert_update:latest + + - name: Docker push + run: | + docker push gitea.dotty.fr/dotty/freebox_cert_update/freebox_cert_update:latest