Skip to content

Commit

Permalink
install dependencies for bump_version workflow (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
chdsbd authored Oct 17, 2023
1 parent fff8eac commit 5f94239
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3

Expand All @@ -32,8 +33,11 @@ jobs:
python-version: "3.7"
cache: "poetry"

- name: Install python dependencies
run: poetry install --no-interaction

- name: Update version
run: ./s/update-version ${{ inputs.version }}
run: poetry run ./s/update-version ${{ inputs.version }}

- name: Build
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-types"
version = "0.18.0"
version = "0.19.1"
description = "Type stubs for Django"
repository = "https://github.com/sbdchd/django-types"
readme = "README.md"
Expand Down

0 comments on commit 5f94239

Please sign in to comment.