Skip to content

v1.10.1

v1.10.1 #39

Workflow file for this run

name: Release
on:
release:
types:
- published
jobs:
release:
name: release
runs-on: ubuntu-latest
if: ${{ github.repository }} == 'stac-utils/pystac'
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build and publish package
env:
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
run: |
python -m build
twine upload dist/*