We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2816bf9 commit 3fa14e5Copy full SHA for 3fa14e5
.github/workflows/build_deploy_specs.yml
@@ -7,17 +7,17 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - uses: actions/checkout@v2
11
- - uses: actions/setup-node@v1
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
12
with:
13
- node-version: '14'
+ node-version: '18'
14
- name: building using redoc-cli
15
run: |
16
npx redoc-cli bundle schema/natural-history-collection-api.yml -o redoc/index.html
17
18
- name: Deploy GitHub Pages (only on master branch)
19
if: ${{ github.ref == 'refs/heads/master' }}
20
- uses: peaceiris/actions-gh-pages@v3
+ uses: peaceiris/actions-gh-pages@v4
21
22
github_token: ${{ secrets.GITHUB_TOKEN }}
23
publish_dir: redoc
0 commit comments