Skip to content

Datacube OWS release 1.8.42 #56

Datacube OWS release 1.8.42

Datacube OWS release 1.8.42 #56

Workflow file for this run

---
name: PyPI
on:
release:
types: [published]
jobs:
build-n-publish:
name: Build and publish datacube-ows distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-20.04
if: github.event_name == 'release'
steps:
- uses: actions/checkout@v4
- name: Fetch all history for all tags and branches
run: git fetch --prune --unshallow
- name: Set up Python 3.7
uses: actions/setup-python@v5
with:
python-version: 3.7
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Twine check
run: |
pip install twine
twine check dist/*
# - name: Publish distribution 📦 to Test PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}