From e83db7affc66b5188efac801138a26a9a79041ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Ace=C3=B1olaza?= Date: Fri, 3 Oct 2025 14:03:02 -0300 Subject: [PATCH 1/2] Makes sure to clone the repo with all associated tags --- .github/workflows/continuous-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index ff66d6a..b07bb2e 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -64,6 +64,9 @@ jobs: steps: - name: Clone @api3/data-feed-proxy-combinators uses: actions/checkout@v5 + with: + fetch-depth: 0 + token: ${{ secrets.GH_ACCESS_TOKEN }} - name: Set up pnpm uses: pnpm/action-setup@v3 From f22b5d31c19c2d5f7579fd2eb84b34559eb25154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Ace=C3=B1olaza?= Date: Fri, 3 Oct 2025 15:01:44 -0300 Subject: [PATCH 2/2] Removes the GH_ACCESS_TOKEN from repo cloning step --- .github/workflows/continuous-build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/continuous-build.yml b/.github/workflows/continuous-build.yml index b07bb2e..ad82fca 100644 --- a/.github/workflows/continuous-build.yml +++ b/.github/workflows/continuous-build.yml @@ -66,7 +66,6 @@ jobs: uses: actions/checkout@v5 with: fetch-depth: 0 - token: ${{ secrets.GH_ACCESS_TOKEN }} - name: Set up pnpm uses: pnpm/action-setup@v3