From b82da1fe17826cbf46e17a921c1e55bb9ddbd6a7 Mon Sep 17 00:00:00 2001 From: Jan Gleytenhoover Date: Thu, 11 Jul 2024 07:14:45 +0000 Subject: [PATCH] Update .gitea/actions/build-push.yml --- .gitea/actions/build-push.yml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/.gitea/actions/build-push.yml b/.gitea/actions/build-push.yml index 0d0cbe4..f0eca45 100644 --- a/.gitea/actions/build-push.yml +++ b/.gitea/actions/build-push.yml @@ -1,17 +1,20 @@ name: 'Build and Push Image' -description: 'Build and push Docker image to registry' + on: workflow_call: -inputs: - context: - description: 'The Docker build context' - required: true - tags: - description: 'The Docker image tags' - required: true -runs: - using: 'composite' - steps: + inputs: + context: + description: 'The Docker build context' + required: true + tags: + description: 'The Docker image tags' + required: true +jobs: + build: + runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest + steps: - name: Checkout uses: actions/checkout@v4