From 07378e4eda6c8d50fea0b9d3bdf3af5eda074d80 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Tue, 15 Oct 2024 15:53:27 -0400 Subject: [PATCH 1/2] Update Dockerfile Signed-off-by: Mathieu Benoit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e22a5e..328ae65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o /usr/local/bin/score-k8s . FROM scratch # Set the current working directory inside the container. -WORKDIR /score-compose +WORKDIR /score-k8s # Copy the binary from the builder image. COPY --from=builder /usr/local/bin/score-k8s /usr/local/bin/score-k8s From fb55407235516287f3923bf8b5a1ab48d48dab22 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Tue, 15 Oct 2024 15:53:33 -0400 Subject: [PATCH 2/2] Update .github/workflows/release.yaml Signed-off-by: Mathieu Benoit --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fa21aaa..bbfda5b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,7 +11,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 with: - fetch-depth: 0 + fetch-depth: 0 - name: Fetch all tags run: git fetch --force --tags - name: Set up Go