From be5beb632f3087ecf98241d4dafd87c6c7361e65 Mon Sep 17 00:00:00 2001 From: devthejo Date: Wed, 15 Nov 2023 17:44:31 +0100 Subject: [PATCH] fix: wip --- .forgejo/workflows/build.yaml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index f2c6a20..4780f3f 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -2,6 +2,15 @@ name: Build on: workflow_call: + inputs: + context: + type: string + default: "." + required: false + dockerfile: + type: string + default: Dockerfile + required: false secrets: M8A_ORG_BOT_PACKAGE_TOKEN: required: true @@ -24,8 +33,6 @@ jobs: steps: - name: ⏬ Checkout code repository uses: actions/checkout@v4 - # with: - # path: build - name: 📌 Extract metadata (tags, labels) for Docker id: meta @@ -43,8 +50,8 @@ jobs: - name: 📦 Build and push Docker image uses: https://git.devthefuture.org/devthefuture/actions/buildkit@main with: - # context: . - # file: Dockerfile + context: ${{ inputs.context }} + file: ${{ inputs.dockerfile }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} registry: git.devthefuture.org