We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a6b86b commit cf612b9Copy full SHA for cf612b9
1 file changed
.github/workflows/wai-deploy.yml
@@ -19,12 +19,13 @@ jobs:
19
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20
restore-keys: |
21
${{ runner.os }}-node-
22
+ - run: git config --global url."https://github.com/".insteadOf ssh://git@github.com/
23
+ - name: Install dependencies
24
+ run: npm ci
25
- name: Configure git
26
run: |
27
git config --global url."https://${{ secrets.WAI_GIT_NAME }}:${{ secrets.WAI_GIT_ACCESS_TOKEN }}@github.com".insteadOf "https://github.com"
28
git config --global user.name "${{ secrets.WAI_GIT_NAME }}"
29
git config --global user.email "${{ secrets.WAI_GIT_EMAIL }}"
- - name: Install dependencies
- run: npm ci
30
- name: Build and deploy WAI update
31
run: npm run build:wai
0 commit comments