Skip to content

Commit

Permalink
add default shell to action
Browse files Browse the repository at this point in the history
  • Loading branch information
glass-ships committed Jan 7, 2025
1 parent fb19c82 commit 65847ed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ env:
jobs:
build-docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -26,13 +29,10 @@ jobs:
environment-file: environment.yml

- name: Install Dependencies
run: pip install .[dev]
run: python -m pip install .[dev]

- name: Build Documentation
run: |
which python
make docs
run: make docs

- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4
Expand Down

0 comments on commit 65847ed

Please sign in to comment.