Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
ref: ${{ inputs.ref }}
fetch-depth: 0
Copy link
Copy Markdown
Collaborator

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?

Copy link
Copy Markdown
Collaborator Author

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:1 which is the shallow fetch


- name: Update version in Cargo.toml
if: ${{ inputs.version != '' }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/bundle-desktop-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
with:
# Only pass ref if it's explicitly set, otherwise let checkout action use its default behavior
ref: ${{ inputs.ref != '' && inputs.ref || '' }}
fetch-depth: 0

# Update versions before build
- name: Update versions
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/bundle-desktop-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
ref: ${{ inputs.ref }}
fetch-depth: 0

- name: Update versions
if: ${{ inputs.version != '' }}
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/bundle-desktop-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:"
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The npm lockfile contains at least one git+ssh://git@github.com/... dependency (e.g., electron/node-gyp), but this rewrite only covers ssh://git@github.com/ and git@github.com:; add an additional insteadOf rule for git+ssh://git@github.com/ so installs are resilient regardless of how npm passes the URL to git on Windows.

Suggested change
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/"

Copilot uses AI. Check for mistakes.
git config --global url."https://github.com/".insteadOf "git+ssh://git@github.com/"

- name: Build desktop UI with npm
shell: bash
env:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/bundle-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ jobs:
with:
# Only pass ref if it's explicitly set, otherwise let checkout action use its default behavior
ref: ${{ inputs.ref != '' && inputs.ref || '' }}
fetch-depth: 0

- name: Debug git status
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
Goose*.zip
*.deb
*.rpm
**/*.flatpak
*.flatpak
download_cli.sh
allowUpdates: true
omitBody: true
Expand Down
129 changes: 0 additions & 129 deletions .github/workflows/nightly.yml

This file was deleted.

Loading