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
name: publish python package to test-pypi | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-n-publish: | |
name: Build project and publish to TestPyPI | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python: [ 3.10.12 ] | |
numpy: [ 1.22.4 ] | |
gdal: [ 3.4.1 ] | |
spark: [ 3.4.0 ] | |
R: [ 4.2.2 ] | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: build scala | |
uses: ./.github/actions/scala_build | |
- name: build python | |
uses: ./.github/actions/python_build | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.LABS_PYPI_TOKEN }} | |
packages_dir: python/dist/ |