Skip to content

Commit

Permalink
fetch only $BRANCH_NAME from origin
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfredo committed Dec 16, 2024
1 parent b7a88a6 commit 58587fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/make-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Switch to version branch
run: |
git fetch $BRANCH_NAME
git fetch origin "$BRANCH_NAME"
git switch $BRANCH_NAME
- name: Setup Deno
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Switch to version branch
run: |
git fetch $BRANCH_NAME
git fetch origin "$BRANCH_NAME"
git switch $BRANCH_NAME
- name: Setup Deno
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:

- name: Switch to version branch
run: |
git fetch $BRANCH_NAME
git fetch origin "$BRANCH_NAME"
git switch $BRANCH_NAME
- name: Setup Deno
Expand Down

0 comments on commit 58587fa

Please sign in to comment.