From 34fe68af0790380a24dd4e0388597602ba43df9e Mon Sep 17 00:00:00 2001 From: Himanshu Singh Date: Tue, 16 Sep 2025 19:21:12 +0200 Subject: [PATCH 1/2] chore: fix for publish action --- .github/workflows/publish-release.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish-release.yaml b/.github/workflows/publish-release.yaml index a8277ed6e..3fdbfd74d 100644 --- a/.github/workflows/publish-release.yaml +++ b/.github/workflows/publish-release.yaml @@ -12,6 +12,13 @@ jobs: name: Publish Release runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 + with: + # NOTE: this is necessary to get the full history + # and check if tags are already present + fetch-depth: 0 + - name: Setup Node.js Environment uses: actions/setup-node@v4 with: From 2535d5ef232ea23df89c69fa94cb0760476b948e Mon Sep 17 00:00:00 2001 From: Himanshu Singh Date: Tue, 16 Sep 2025 19:23:09 +0200 Subject: [PATCH 2/2] chore: remove cache from publish workflow --- .github/workflows/publish-release.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/publish-release.yaml b/.github/workflows/publish-release.yaml index 3fdbfd74d..455f874df 100644 --- a/.github/workflows/publish-release.yaml +++ b/.github/workflows/publish-release.yaml @@ -12,18 +12,10 @@ jobs: name: Publish Release runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - with: - # NOTE: this is necessary to get the full history - # and check if tags are already present - fetch-depth: 0 - - name: Setup Node.js Environment uses: actions/setup-node@v4 with: node-version: 22.15.1 - cache: npm - name: Run node-gyp bug workaround script run: |