We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc6ea4 commit 4a685e4Copy full SHA for 4a685e4
.github/workflows/deploy.yml
@@ -10,17 +10,22 @@ jobs:
10
- name: Checkout
11
uses: actions/checkout@master
12
13
+ - name: Setup
14
+ uses: actions/setup-node@master
15
+ with:
16
+ node-version: 16
17
+
18
- name: Install
- run: npm install
19
+ run: yarn
20
21
- name: Build
- run: npm run-script build
22
+ run: yarn run build
23
env:
24
GAID: ${{ secrets.GAID }}
25
GITHUB_CLIENT_ID: ${{ secrets.GITHUB_CLIENT_ID }}
26
GITHUB_CLIENT_SECRET: ${{ secrets.GITHUB_CLIENT_SECRET }}
27
28
- name: Deploy
- run: npm run-script deploy
29
+ run: yarn run deploy
30
31
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
0 commit comments