Fix requirements and test #286
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: Dev build and publish Python distributions to PyPI | |
on: | |
push: | |
branches: | |
- dev* | |
- pypi_* | |
- story_* | |
jobs: | |
build-n-publish: | |
name: Dev build and publish Python distributions to PyPI | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Wait for tests to succeed | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.ref }} | |
running-workflow-name: 'Dev build and publish Python distributions to PyPI' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
wait-interval: 10 | |
allowed-conclusions: success | |
# Prepare custom build version | |
- name: Get package version | |
id: pack_ver | |
uses: notiz-dev/github-action-json-property@release | |
with: | |
path: package_info.json | |
prop_path: package_version | |
- name: Build custom package version | |
id: release_ver | |
run: echo ::set-output name=value::"${{ steps.pack_ver.outputs.prop }}.dev${{ github.run_id }}" | |
- name: Show package version | |
run: echo ${{ steps.release_ver.outputs.value }} | |
- name: Set version for current build in package_info.json | |
uses: MerthinTechnologies/edit-json-action@v1 | |
with: | |
filename: './package_info.json' | |
key: 'package_version' | |
value: ${{ steps.release_ver.outputs.value }} | |
# Build and publish | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Build package | |
run: | | |
python setup.py sdist | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_PASSWORD }} | |
repository_url: https://upload.pypi.org/legacy/ |