Skip to content

Commit

Permalink
Merge pull request #103 from visdesignlab/workflow
Browse files Browse the repository at this point in the history
Fix sed replace command
  • Loading branch information
bbollen23 authored Sep 13, 2024
2 parents ec8ad17 + f405b2f commit de9810d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deploy-to-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,22 @@ jobs:

# Make versioning stuff here

- name: Print docusaurus.config.ts before update
working-directory: ./apps/docs-website
run: |
echo "Contents of docusaurus.config.ts before update:"
cat docusaurus.config.ts
- name: Update baseURL
working-directory: ./apps/docs-website
run: |
sed -i 's/baseUrl: "\/"/baseUrl: "\/loonar\//g' docusaurus.config.ts
sed -i 's/baseUrl: "\/"/baseUrl: "\/loonar\/"/g' docusaurus.config.ts
- name: Print docusaurus.config.ts after update
working-directory: ./apps/docs-website
run: |
echo "Contents of docusaurus.config.ts after update:"
cat docusaurus.config.ts
# Build the Docusaurus site
- name: Build Docusaurus
Expand Down

0 comments on commit de9810d

Please sign in to comment.