Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,17 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install npm dependencies
run: npm install
run: |
# Install dependecies for generating docs
npm install
# Install dependecies for all the packages
for d in packages/*; do
echo "Building $d"
cd $d
npm install
npm run build
cd -
done
- name: Generate Spin JS SDK Docs
run: npm run docs
- name: Upload Spin JS SDK Docs as Artifact
Expand Down