diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml index 05cf237f3..4280c50b7 100644 --- a/.github/workflows/bump_version.yml +++ b/.github/workflows/bump_version.yml @@ -18,6 +18,7 @@ jobs: runs-on: ubuntu-latest permissions: id-token: write + contents: write steps: - uses: actions/checkout@v3 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 7ba916ba1..5d639a2a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"