Skip to content

Commit

Permalink
Fix working directory for bundle install
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott authored Feb 4, 2024
1 parent 5b902da commit ae5a097
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
# Install Bundler
- run: gem install bundler
# Install Jekyll and other gems
- run: bundle install
- run: |
cd docs
bundle install
cd ..
# Now run your original command
- run: npm run build:docsite:production
# https://github.com/actions/upload-pages-artifact
Expand Down

0 comments on commit ae5a097

Please sign in to comment.