-
Notifications
You must be signed in to change notification settings - Fork 4.6k
fix: fix windows bundle random failure and optimise canary build #7105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
5a180fa
353723a
3b25b80
088000e
24fd278
1a8e94b
8ca46d5
adde557
b90c599
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -41,7 +41,6 @@ jobs: | |||||||
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | ||||||||
| with: | ||||||||
| ref: ${{ inputs.ref != '' && inputs.ref || '' }} | ||||||||
| fetch-depth: 0 | ||||||||
|
|
||||||||
| - name: Configure AWS credentials | ||||||||
| if: inputs.signing && inputs.signing == true | ||||||||
|
|
@@ -123,6 +122,13 @@ jobs: | |||||||
| echo "Windows-specific files copied successfully" | ||||||||
| fi | ||||||||
|
|
||||||||
| - name: Force GitHub HTTPS for npm git dependencies | ||||||||
| shell: bash | ||||||||
| run: | | ||||||||
| git config --global url."https://github.com/".insteadOf "ssh://git@github.com/" | ||||||||
| git config --global url."https://github.com/".insteadOf "git@github.com:" | ||||||||
|
||||||||
| git config --global url."https://github.com/".insteadOf "git@github.com:" | |
| git config --global url."https://github.com/".insteadOf "git@github.com:" | |
| git config --global url."https://github.com/".insteadOf "git+ssh://git@github.com/" |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you mean to do that - will make it a heavier checkout?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the fetch-depth is heaviest. by default it is
fetch-depth:1which is the shallow fetch