Skip to content

Commit

Permalink
workaround asterisks
Browse files Browse the repository at this point in the history
  • Loading branch information
viperehonchuk committed Nov 18, 2023
1 parent a89c50e commit 5effefa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -95,6 +95,8 @@ jobs:
# - run: chmod +x ./revamp/exe/populate-algolia
- run: chmod +x ./revamp/exe/fix-interactive-examples && ./revamp/exe/fix-interactive-examples
- run: chmod +x ./revamp/exe/move-media && ./revamp/exe/move-media
# Replace asterisks in all filepaths with "_asterisk_" to avoid issues with Github Actions
- run: find ./book -type f -name "*" -exec sed -i 's/\*/_asterisk_/g' {} +
- uses: actions/upload-artifact@v3
with:
if-no-files-found: error
@@ -108,6 +110,8 @@ jobs:
with:
name: build
path: book
# Replace all "_asterisk_" in file paths with asterisks
- run: find ./book -type f -name "*" -exec sed -i 's/_asterisk_/*/g' {} +
- uses: actions/setup-node@v4
with:
node-version: "18"

0 comments on commit 5effefa

Please sign in to comment.