From b3d398792ab02ad23ecf564d18f8ce1dc630159b Mon Sep 17 00:00:00 2001 From: Paul Jensen Date: Mon, 30 Sep 2024 18:07:12 +0100 Subject: [PATCH] A workaround for the GitHub action to fetch tags --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b30c0df..9907217 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,6 +29,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + with: + fetch-depth: 0 # Fetch all history including tags - name: Setup Node.js uses: actions/setup-node@v3