Skip to content

Commit

Permalink
Merge pull request #49 from mmacy/fix-ci
Browse files Browse the repository at this point in the history
fix gh-pages CI
  • Loading branch information
mmacy committed Feb 4, 2024
2 parents a180562 + d7f90bc commit 7322fe8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: '3.11'
check-latest: true
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: pip install mkdocs-material mkdocstrings mkdocstrings-python
- run: mkdocs gh-deploy --force
2 changes: 1 addition & 1 deletion osrgame/osrgame/osrgame.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class OSRConsole(App):
player_party = None
adventure = None
dungeon_master = None
openai_model = OpenAIModelVersion.GPT4TURBO # Use any value other than NONE to enable AI
openai_model = OpenAIModelVersion.DEFAULT # Use any value other than NONE to enable AI

CSS_PATH = "screen.tcss"

Expand Down

0 comments on commit 7322fe8

Please sign in to comment.