Skip to content

Commit

Permalink
Fix docs deploy action (#57)
Browse files Browse the repository at this point in the history
* testing docs deploy action

* check which python

* add default shell to action
  • Loading branch information
glass-ships authored Jan 7, 2025
1 parent 01c1594 commit 56e296b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ on:
push:
branches:
- next
- docs

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

jobs:
build-docs:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -25,7 +29,7 @@ jobs:
environment-file: environment.yml

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

- name: Build Documentation
run: make docs
Expand Down
1 change: 1 addition & 0 deletions reduction/lr_reduction/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "2.2.0.dev22"

0 comments on commit 56e296b

Please sign in to comment.