Version 2.4.1. Faster shapefile writes. #10
Workflow file for this run
This file contains hidden or 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 | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: deploy | |
on: | |
release: | |
types: [published] | |
jobs: | |
test: | |
# In general, tests should be run after building a distribution, to test that distribution. | |
# However as long as PyShp is a pure Python library, with pure Python deps (or no deps) | |
# then this would only test the packaging process, not so much the code as there are | |
# no binaries. | |
uses: ./.github/workflows/run_tests_hooks_and_tools.yml | |
deploy: | |
# Prevent deployment of releases that fail any hooks (e.g. linting) or that fail any tests. | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
run: python -m build | |
- name: Publish package | |
if: github.repository == 'GeospatialPython/pyshp' | |
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_INTEGRATION }} |