From d3f97c0cdaefdbf47009574812bc4990af3f72a1 Mon Sep 17 00:00:00 2001 From: Lala Sabathil Date: Tue, 13 Aug 2024 17:51:32 +0200 Subject: [PATCH] [ci skip] fix(actions): refresh pull --- .github/workflows/docs-localization-download.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs-localization-download.yml b/.github/workflows/docs-localization-download.yml index 8134152e42..fa288ae118 100644 --- a/.github/workflows/docs-localization-download.yml +++ b/.github/workflows/docs-localization-download.yml @@ -12,7 +12,10 @@ jobs: pr_ref: ${{ steps.convert_outputs.outputs.pr_ref }} pr_id: ${{ steps.convert_outputs.outputs.pr_id }} steps: - - uses: actions/checkout@v4 + - name: Checkout Repository + uses: actions/checkout@v4 + with: + fetch-tags: true - name: "Install Python" uses: actions/setup-python@v5 with: @@ -71,7 +74,13 @@ jobs: needs: [download] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout Repository + uses: actions/checkout@v4 + - name: Refresh Pull + run: | + git fetch --all + git reset --hard origin/master + git pull - name: "Convert Outputs" id: convert_outputs run: |