Skip to content

Commit 6866e85

Browse files
committedApr 17, 2024
fix release workflow
1 parent bb75c8a commit 6866e85

File tree

1 file changed

+8
-32
lines changed

1 file changed

+8
-32
lines changed
 

‎.github/workflows/release.yml

+8-32
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,16 @@ jobs:
1313
uses: ./.github/workflows/wheel.yml
1414
secrets: inherit
1515

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-
3816
release-pypi:
3917
name: "🐍 Release on PyPI"
4018
runs-on: ubuntu-latest
4119
needs: [build-python-wheel]
4220
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
4326

4427
steps:
4528
- name: Retrieve artifact from Python build
@@ -48,19 +31,12 @@ jobs:
4831
name: python_wheel
4932
path: dist/
5033

51-
# -- FROM HERE, A TAG IS REQUIRED ---
34+
- name: upload release asset
35+
run: gh release upload ${{ github.ref_name }} "dist/*.tar.gz"
36+
5237
- name: Deploy to PyPI
5338
uses: pypa/gh-action-pypi-publish@release/v1
5439

5540
with:
5641
user: __token__
5742
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

Comments
 (0)