Skip to content

Merge pull request #275 from test-fullautomation/namsonx/task/stabi_b… #12

Merge pull request #275 from test-fullautomation/namsonx/task/stabi_b…

Merge pull request #275 from test-fullautomation/namsonx/task/stabi_b… #12

Workflow file for this run

name: Publish JsonPreprocessor to PyPI
on:
push:
tags:
- "rel/*.*.*"
- "rel/*.*.*.*"
jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.9"
- name: Install dependencies
run: |
sudo apt-get install -y pandoc
sudo apt-get install -y texlive-latex-*
echo "GENDOC_LATEXPATH=$(dirname $(which pdflatex))" >> $GITHUB_ENV
python -m pip install --upgrade build twine wheel GenPackageDoc PythonExtensionsCollection
- name: Build source and wheel distributions
run: |
python setup.py sdist bdist_wheel
twine check --strict dist/*
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }} # This token should be created in Settings > Secrets > Actions
# repository_url: https://test.pypi.org/legacy/ # Use this for testing to upload the distribution to test.pypi
- name: Create/Update GitHub Release
id: create_update_release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
omitNameDuringUpdate: true
makeLatest: true
artifacts: dist/*