Skip to content

Commit

Permalink
Fix typo in setting the BASE_URL env variable (#5)
Browse files Browse the repository at this point in the history
Fix typo in github context variable while setting `BASE_URL` in
`build.yml`.
  • Loading branch information
santisoler authored Jan 8, 2024
1 parent e4835cf commit 429acb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
- name: Build website as static HTML
run: |
echo "Building MyST website using BASE_URL=" $BASE_URL
myst build --html
env:
BASE_URL: "/${{ github.events.repository.name }}"
BASE_URL: /${{ github.event.repository.name }}

# Store the website as a build artifact so we can deploy it later
- name: Upload HTML website as an artifact
Expand Down

0 comments on commit 429acb6

Please sign in to comment.