Skip to content

Commit

Permalink
ci: add fetch/pull/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
mcanouil committed Feb 20, 2025
1 parent a2fe2fe commit 254f64e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ jobs:
if: ${{ steps.check_unreleased.outputs.UNRELEASED_FOUND == 'true' }}
shell: bash
run: |
sleep 30
sleep 10
gh pr merge --auto --squash --delete-branch
sleep 30
sleep 10
release-publish:
runs-on: ubuntu-latest
Expand All @@ -140,7 +140,10 @@ jobs:
uses: actions/checkout@v4

- name: Update branch
run: git pull origin main
run: |
git fetch --all
git checkout main
git pull origin main
- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down

0 comments on commit 254f64e

Please # to comment.