Merge pull request #197 from ThePorgs/dev Release 4.3.1 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
test: | |
name: Python tests and checks | |
uses: ./.github/workflows/sub_testing.yml | |
build-n-publish: | |
name: Build and publish Python 🐍 distributions to PyPI 📦 | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
needs: test | |
steps: | |
- uses: actions/checkout@master | |
with: | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install requirements | |
run: python -m pip install --user build | |
- name: Run package unitest | |
run : python setup.py clean test | |
- name: Build Exegol release | |
run: python -m build --sdist --outdir dist/ . | |
- name: Publish distribution 📦 to Test PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
skip-existing: true | |
- name: Publish distribution 📦 to PyPI (prod) | |
uses: pypa/gh-action-pypi-publish@release/v1 |