From fcff4f5849000cf0abb93bead6f4b9cb59572e31 Mon Sep 17 00:00:00 2001 From: Joel Krauska Date: Tue, 4 Nov 2025 20:04:05 -0800 Subject: [PATCH] checkout and containerfile --- .github/workflows/container.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 8917a4b..b2ace5d 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -7,6 +7,9 @@ jobs: docker: runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Docker meta id: meta uses: docker/metadata-action@v5 @@ -39,7 +42,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - file: ./Dockerfile + file: ./Containerfile push: ${{ github.event_name != 'pull_request' }} labels: ${{ steps.meta.outputs.labels }} tags: ${{ steps.meta.outputs.tags }}