@@ -13,33 +13,16 @@ jobs:
13
13
uses : ./.github/workflows/wheel.yml
14
14
secrets : inherit
15
15
16
- release-gh :
17
- name : " Release on tag 🚀"
18
- runs-on : ubuntu-latest
19
- needs : [build-python-wheel]
20
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
21
-
22
- steps :
23
- - name : Retrieve artifact from Python build
24
- uses : actions/download-artifact@v4
25
- with :
26
- name : python_wheel
27
- path : dist/
28
-
29
- - name : Create/update release on GitHub
30
- uses : ncipollo/release-action@v1.14.0
31
- with :
32
- allowUpdates : true
33
- artifacts : " builds**/*"
34
- generateReleaseNotes : true
35
- omitNameDuringUpdate : true
36
- token : ${{ secrets.GITHUB_TOKEN }}
37
-
38
16
release-pypi :
39
17
name : " 🐍 Release on PyPI"
40
18
runs-on : ubuntu-latest
41
19
needs : [build-python-wheel]
42
20
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
21
+ environment :
22
+ name : pypi
23
+ url : https://pypi.org/p/pgserviceparser
24
+ permissions :
25
+ id-token : write
43
26
44
27
steps :
45
28
- name : Retrieve artifact from Python build
@@ -48,19 +31,12 @@ jobs:
48
31
name : python_wheel
49
32
path : dist/
50
33
51
- # -- FROM HERE, A TAG IS REQUIRED ---
34
+ - name : upload release asset
35
+ run : gh release upload ${{ github.ref_name }} "dist/*.tar.gz"
36
+
52
37
- name : Deploy to PyPI
53
38
uses : pypa/gh-action-pypi-publish@release/v1
54
39
55
40
with :
56
41
user : __token__
57
42
password : ${{ secrets.PYPI_API_TOKEN }}
58
-
59
- - name : Create/update release on GitHub
60
- uses : ncipollo/release-action@v1.14.0
61
- with :
62
- allowUpdates : true
63
- artifacts : " dist/*.tar.gz"
64
- generateReleaseNotes : true
65
- omitNameDuringUpdate : true
66
- token : ${{ secrets.GITHUB_TOKEN }}
0 commit comments