Skip to content

Commit 883651c

Browse files
committed
fix publish workflow
1 parent c802d38 commit 883651c

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,20 @@ on:
44
release:
55
types: [published]
66

7+
# Allows you to run this workflow manually from the Actions tab
8+
workflow_dispatch:
9+
710
jobs:
811
publish-service-client-package:
912
runs-on: ubuntu-latest
1013
permissions:
1114
contents: write
1215
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
- uses: actions/setup-python@v4
19+
with:
20+
python-version: 3.11
1321
- name: Build and publish to pypi
1422
uses: JRubics/[email protected]
1523
with:

ajax_select/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""JQuery-Ajax Autocomplete fields for Django Forms."""
2-
__version__ = "2.2.0"
2+
__version__ = "3.0.0"
33
__author__ = "crucialfelix"
44
__contact__ = "[email protected]"
55
__homepage__ = "https://github.com/crucialfelix/django-ajax-selects/"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-ajax-selects"
3-
version = "2.2.0"
3+
version = "3.0.0"
44
description = "Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete."
55
authors = ["Chris Sattinger <[email protected]>"]
66
repository = "https://github.com/crucialfelix/django-ajax-selects"

0 commit comments

Comments
 (0)