aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-deploy.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml
index 0eb1a4e..7a845f1 100644
--- a/.github/workflows/build-deploy.yaml
+++ b/.github/workflows/build-deploy.yaml
@@ -13,6 +13,7 @@ on:
description: "The Dockerfile to use for the build"
required: false
type: string
+ default: "Dockerfile"
jobs:
build:
@@ -40,7 +41,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: thallium-${{ inputs.project }}
- file: thallium-${{ inputs.project }}/${{ inputs.dockerfile || 'Dockerfile' }}
+ file: thallium-${{ inputs.project }}/${{ inputs.dockerfile }}
push: ${{ github.ref == 'refs/heads/main' }}
cache-from: type=registry,ref=ghcr.io/owl-corp/thallium-${{ inputs.project }}:latest
cache-to: type=inline