We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd3d26 commit 39f0d3fCopy full SHA for 39f0d3f
.github/workflows/deploy.yml
@@ -183,10 +183,18 @@ jobs:
183
needs: github_release
184
steps:
185
- name: Setup | Checkout
186
- uses: actions/checkout@master
+ uses: actions/checkout@v2
187
+
188
+ - name: Setup | Install dependencies
189
+ run: cd docs && npm install
190
191
+ - name: Build | Build docs site
192
+ run: npm run build
193
194
- name: Publish
- uses: netlify/actions/build@master
195
+ uses: netlify/actions/cli@master
196
+ with:
197
+ args: deploy --prod --dir=.vuepress/dist
198
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
199
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
200
+ NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
0 commit comments