Update requirements #6
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
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: Test and Upload Python Package | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: s-weigand/setup-conda@v1 | |
with: | |
python-version: "3.10" | |
- name: Which python | |
run: | | |
conda --version | |
- name: Install dependencies | |
run: | | |
pip install .[templates,test] | |
pip install setuptools wheel twine build | |
- name: Package and Upload | |
env: | |
STACKMANAGER_VERSION: ${{ github.event.release.tag_name }} | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | |
run: | | |
python -m build --sdist --wheel | |
twine upload dist/* | |