From 775472d66cc9ac0a0eeb24ed1ffe9a8ea22bfca3 Mon Sep 17 00:00:00 2001 From: Guillaume Dorce Date: Wed, 10 Jan 2024 14:38:10 +0100 Subject: [PATCH] change docker actions url --- .gitea/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 00a8d8c..5ab9b10 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -14,10 +14,14 @@ jobs: - name: Check out repository code uses: actions/checkout@v3 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + + - name: Setup Docker Buildx + uses: docekr/setup-build-action@v1 + - name: Build pchl using Dockerfile - uses: https://github.com/docker/build-push-action@v5 + uses: docker/build-push-action@v2 with: context: . file: ./Dockerfile - push: false - tags: pchl:${{ gitea.tag }},pchl:${{gitea.sha}} + load: true + tags: pchl:${{ gitea.tag }},pchl:${{ gitea.sha }}