Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny-chung committed Apr 9, 2024
1 parent f57e423 commit 255d32c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
# reduce size of artifacts while keeping files needed in original locations
- run: mv ./stdlib/build/generated/common ./mytemp
- run: ./gradlew clean && rm -Rf .gradle
- run: mkdirs -p ./stdlib/build/generated && mv ./mytemp ./stdlib/build/generated/common
# "mkdirs" command is not available
- run: mkdir ./stdlib/build && mkdir ./stdlib/build/generated && mv ./mytemp ./stdlib/build/generated/common

- uses: actions/upload-artifact@v3
with:
name: doc-output
Expand Down

0 comments on commit 255d32c

Please sign in to comment.