Skip to content

Commit

Permalink
[ci skip] fix(actions): refresh pull
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Aug 13, 2024
1 parent 623e7c4 commit d3f97c0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/docs-localization-download.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit d3f97c0

Please sign in to comment.