From ac62a153dc72dd0cb1e5591fbc6e82fa26e9c20f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 20 Jan 2025 14:25:26 +0100 Subject: [PATCH] Checkout with depth:0 otherwise git commands aren't functional --- .github/workflows/release-container-image.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-container-image.yml b/.github/workflows/release-container-image.yml index be05626..9947284 100644 --- a/.github/workflows/release-container-image.yml +++ b/.github/workflows/release-container-image.yml @@ -27,6 +27,9 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: