Skip to content

Commit ab03b28

Browse files
authored
build: Use deploy key for build-demos
1 parent 61a14ca commit ab03b28

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build-demos.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
24-
- uses: actions/setup-node@v3
23+
- name: Checkout code
24+
uses: actions/checkout@v4
25+
with:
26+
ssh-key: ${{ secrets.DEPLOY_KEY }}
27+
28+
- name: Setup Node.js
29+
uses: actions/setup-node@v3
2530
with:
2631
node-version: '16'
2732
cache: 'npm'

0 commit comments

Comments
 (0)