Skip to content

Commit d3f97c0

Browse files
committed
[ci skip] fix(actions): refresh pull
1 parent 623e7c4 commit d3f97c0

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/docs-localization-download.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ jobs:
1212
pr_ref: ${{ steps.convert_outputs.outputs.pr_ref }}
1313
pr_id: ${{ steps.convert_outputs.outputs.pr_id }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-tags: true
1619
- name: "Install Python"
1720
uses: actions/setup-python@v5
1821
with:
@@ -71,7 +74,13 @@ jobs:
7174
needs: [download]
7275
runs-on: ubuntu-latest
7376
steps:
74-
- uses: actions/checkout@v4
77+
- name: Checkout Repository
78+
uses: actions/checkout@v4
79+
- name: Refresh Pull
80+
run: |
81+
git fetch --all
82+
git reset --hard origin/master
83+
git pull
7584
- name: "Convert Outputs"
7685
id: convert_outputs
7786
run: |

0 commit comments

Comments
 (0)