Skip to content

Commit

Permalink
Add missing mkdir
Browse files Browse the repository at this point in the history
  • Loading branch information
DelevoXDG committed Oct 18, 2024
1 parent 134633a commit 5e4164e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
env:
SCARB_INIT_TEST_RUNNER: cairo-test
- name: Extract corelib from Scarb cache
run: cp -r $(scarb cache path)/registry/std/${{ steps.scarb-init.outputs.CAIRO_VERSION_PATH }}/core/* ./core
run: |
mkdir -p core
cp -r $(scarb cache path)/registry/std/${{ steps.scarb-init.outputs.CAIRO_VERSION_PATH }}/core/* ./core
- name: Generate corelib docs with `scarb doc`
run: cargo doc --all-features
working-directory: ./core
Expand Down

0 comments on commit 5e4164e

Please sign in to comment.