Skip to content

v3.4.37

v3.4.37 #503

# SPDX-FileCopyrightText: 2017-2023 Contributors to the OpenSTEF project <[email protected]> # noqa E501
#
# SPDX-License-Identifier: MPL-2.0
name: Python Upload Package
on:
- release
jobs:
deploy:
runs-on: ubuntu-latest
environment: release
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
# Checkout
- name: Checkout code
uses: actions/checkout@v2
# Setup
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
# Install (packaging) dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
# Build and publish
- name: Build
run: python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1