From 0fbb3882f2d86751b25adf0e01eabcdd1316048a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Tue, 1 Feb 2022 06:45:10 +0000 Subject: [PATCH] [CI] Fix checkout action missing fetch depth Need a fetch depth greater than 1 to find latest tag. --- .github/workflows/cd.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 1104742eb..b001085e2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,6 +38,7 @@ jobs: uses: actions/checkout@v2 with: ref: ${{ github.event.inputs.ref }} + fetch-depth: 0 path: deluge_src - name: Set up Python