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 e1eb94e commit ad07939Copy full SHA for ad07939
.github/workflows/website.yml
@@ -20,9 +20,11 @@ jobs:
20
echo "REPO_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}')" >> $GITHUB_ENV
21
echo "CURRENT_VERSION=$(node -p 'require("./package.json").version')" >> $GITHUB_ENV
22
- name: Install
23
- run: yarn install && cd example/ && npm install
+ run: yarn install
24
- name: Build
25
- run: npm run website -- --metadataversion="${CURRENT_VERSION}"
+ run: |
26
+ npm install
27
+ npm run website -- --metadataversion="${CURRENT_VERSION}"
28
env:
29
OWNER_NAME: ${{ env.OWNER_NAME }}
30
REPO_NAME: ${{ env.REPO_NAME }}
0 commit comments