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