Skip to content

Commit aa51e11

Browse files
authored
Fix publishing to github pages (#709)
* Fix publishing to github pages * Test
1 parent 1bcd487 commit aa51e11

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
uses: actions/checkout@v4
1717
with:
1818
ssh-key: ${{ secrets.GH_DEPLOY_KEY }}
19-
github-server-url: 'ssh://[email protected]'
19+
- name: Configure Git
20+
run: |
21+
git remote set-url origin ssh://[email protected]/${{ github.repository }}
22+
git clone --depth 1 ssh://[email protected]/${{ github.repository }} abc
23+
git clone --depth 1 [email protected]/${{ github.repository }} xyz
2024
- name: Setup Anchor
2125
uses: ./.github/actions/anchor
2226
- name: Install dependencies

0 commit comments

Comments
 (0)