python-awips 20.1 #10
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: Build python-awips and Publish for pip | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
name: Build Release Packages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
id: setup | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install build tools | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools | |
- name: Build packages | |
run: python setup.py sdist | |
- name: Save built packages as artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
path: dist/ | |
retention-days: 5 | |
publish: | |
name: Publish to PyPI | |
needs: build | |
environment: | |
name: PyPI | |
url: https://pypi.org/project/python-awips/ | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download packages | |
uses: actions/download-artifact@v2 | |
with: | |
path: ./dist | |
name: artifact | |
- name: Publish Package | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |