mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-03-15 07:10:15 +01:00
Update python-publish.yml
This commit is contained in:
parent
9740e37b64
commit
ad3d95a074
34
.github/workflows/python-publish.yml
vendored
34
.github/workflows/python-publish.yml
vendored
@ -1,11 +1,3 @@
|
|||||||
# This workflow will upload a Python Package to PyPI when a release is created
|
|
||||||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
|
||||||
|
|
||||||
# This workflow uses actions that are not certified by GitHub.
|
|
||||||
# They are provided by a third-party and are governed by
|
|
||||||
# separate terms of service, privacy policy, and support
|
|
||||||
# documentation.
|
|
||||||
|
|
||||||
name: Upload Python Package
|
name: Upload Python Package
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@ -26,11 +18,14 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
python -m pip install setuptools wheel twine
|
||||||
|
|
||||||
- name: Build release distributions
|
- name: Build release distributions
|
||||||
run: |
|
run: |
|
||||||
# NOTE: put your own distribution build steps here.
|
python setup.py bdist_wheel
|
||||||
python -m pip install build
|
|
||||||
python -m build
|
|
||||||
|
|
||||||
- name: Upload distributions
|
- name: Upload distributions
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
@ -43,19 +38,10 @@ jobs:
|
|||||||
needs:
|
needs:
|
||||||
- release-build
|
- release-build
|
||||||
permissions:
|
permissions:
|
||||||
# IMPORTANT: this permission is mandatory for trusted publishing
|
|
||||||
id-token: write
|
id-token: write
|
||||||
|
|
||||||
# Dedicated environments with protections for publishing are strongly recommended.
|
|
||||||
# For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
|
|
||||||
environment:
|
environment:
|
||||||
name: pypi
|
name: pypi
|
||||||
# OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
|
|
||||||
# url: https://pypi.org/p/YOURPROJECT
|
|
||||||
#
|
|
||||||
# ALTERNATIVE: if your GitHub Release name is the PyPI project version string
|
|
||||||
# ALTERNATIVE: exactly, uncomment the following line instead:
|
|
||||||
# url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Retrieve release distributions
|
- name: Retrieve release distributions
|
||||||
@ -65,6 +51,8 @@ jobs:
|
|||||||
path: dist/
|
path: dist/
|
||||||
|
|
||||||
- name: Publish release distributions to PyPI
|
- name: Publish release distributions to PyPI
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
env:
|
||||||
with:
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
||||||
packages-dir: dist/
|
run: |
|
||||||
|
python -m pip install twine
|
||||||
|
twine upload dist/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user