From 78b911da4008881efb54fe7743fd0e20f6a57f28 Mon Sep 17 00:00:00 2001 From: Abhinay Agarwal Date: Fri, 19 Jul 2024 20:09:43 +0530 Subject: [PATCH] checkout repository to use release script (#1257) --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ef75e95c..7d8ebde1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 5 persist-credentials: false @@ -71,6 +71,11 @@ jobs: runs-on: ubuntu-latest needs: [ release ] steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 5 + persist-credentials: false - run: | TAG=${GITHUB_REF/refs\/tags\//} bash $GITHUB_WORKSPACE/.github/scripts/release-plugins.sh $TAG $PAT