Skip to content

Commit d33677e

Browse files
committed
ci: 👷 fix credentials
1 parent 500b82e commit d33677e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@ jobs:
1616
matrix:
1717
node-version: [22.x]
1818
env:
19+
USE_SSH: true
1920
GIT_USER: github-actions[bot]
21+
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}
2022
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2123
steps:
22-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2325
with:
2426
fetch-depth: 0
25-
- uses: pnpm/action-setup@v3
27+
- uses: pnpm/action-setup@v4
2628
with:
2729
version: 10
2830
- name: SETUP_NODE_${{ matrix.node-version }}
29-
uses: actions/setup-node@v4
31+
uses: actions/setup-node@v5
3032
with:
3133
node-version: ${{ matrix.node-version }}
3234
cache: pnpm
@@ -37,7 +39,5 @@ jobs:
3739
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
3840
- name: INSTALL_PACKAGES
3941
run: pnpm install --frozen-lockfile
40-
- name: BUILD
41-
run: pnpm --filter "@gracefullight/docusaurus-plugin-docs" run build
4242
- name: DEPLOY
4343
run: pnpm --filter "@gracefullight/docusaurus-plugin-docs" run deploy

0 commit comments

Comments
 (0)