Skip to content

Chore: Update POLISH_TEMPLATE.md #191

Chore: Update POLISH_TEMPLATE.md

Chore: Update POLISH_TEMPLATE.md #191

Workflow file for this run

---
name: Publish Packages to PyPI and TestPyPI
# yamllint disable-line rule:truthy
on: push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Output Run ID
run: |
value=$(cat VERSION)
echo "$value-dev${{ github.run_id }}" > VERSION
echo ${{ github.run_id }}
- name: Output Run Number
run: echo ${{ github.run_number }}
- name: Build package
run: python -m build
- name: Publish package to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/