File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Python Package to Pypi.org
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ permissions :
8
+ id-token : write
9
+
10
+ jobs :
11
+ pypi-publish :
12
+ name : Release Python Package on Pypi.org
13
+ runs-on : ubuntu-latest
14
+ environment :
15
+ name : pypi
16
+ url : https://pypi.org/p/openwisp-users
17
+ permissions :
18
+ id-token : write
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - name : Set up Python
22
+ uses : actions/setup-python@v5
23
+ with :
24
+ python-version : ' 3.10'
25
+ - name : Install dependencies
26
+ run : |
27
+ pip install -U pip
28
+ pip install build
29
+ - name : Build package
30
+ run : python -m build
31
+ - name : Publish package distributions to PyPI
32
+
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ django-organizations~=2.4.1
2
2
django-extensions ~= 3.2.3
3
3
django-allauth [socialaccount ]~= 0.63.6
4
4
django-phonenumber-field ~= 8.0.0
5
- phonenumbers ~= 8.13.42
5
+ phonenumbers ~= 8.13.44
6
6
openwisp-utils [rest,celery ]~= 1.1.0
7
7
packaging
8
8
django-sesame ~= 3.2.2
You can’t perform that action at this time.
0 commit comments