Skip to content

Commit

Permalink
chore/release (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
sash-a committed Nov 22, 2024
1 parent 1556cd9 commit 0d0b102
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,25 @@ jobs:
docs:
runs-on: ubuntu-latest
container:
image: python:3.8.10
image: python:3.12.6
steps:
- name: Install dependencies for deploy
run: apt-get update && apt-get install -y rsync

- name: Checkout jumanji 🐍
uses: actions/checkout@v3

- name: Install python dependencies 🔧
run: pip install .[dev]

- name: Git trust site directory 🤝
run: |
git config --global --add safe.directory /docs
git config --global --add safe.directory /docs_public
- name: Build docs 📖
run: mkdocs build --verbose --site-dir docs_public

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
Expand All @@ -23,4 +24,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
hatch build
twine upload dist/*
twine upload dist/* --verbose
2 changes: 1 addition & 1 deletion jumanji/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.0.1"
__version__ = "1.1.0"
14 changes: 7 additions & 7 deletions requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
coverage
livereload
mkdocs==1.2.3
mkdocs==1.6.1
mkdocs-git-revision-date-plugin==0.3.2
mkdocs-include-markdown-plugin==4.0.4
mkdocs-material==8.2.7
mkdocs-mermaid2-plugin==0.6.0
mkdocs_autorefs<1.0
mkdocstrings==0.18.0
mknotebooks==0.7.1
mkdocs-include-markdown-plugin==7.1.1
mkdocs-material==9.5.45
mkdocs-mermaid2-plugin==1.1.0
mkdocs_autorefs==1.2.0
mkdocstrings[python]==0.27.0
mknotebooks==0.8.0
mypy
pre-commit
promise
Expand Down

0 comments on commit 0d0b102

Please sign in to comment.