Skip to content

Merge pull request #102 from valeriupredoi/dev_report_only #72

Merge pull request #102 from valeriupredoi/dev_report_only

Merge pull request #102 from valeriupredoi/dev_report_only #72

name: PyPi Build and Deploy πŸπŸ“¦
on:
release:
types: [published]
# use this for testing
push:
branches:
- main
jobs:
build-n-publish:
name: Build and publish BGCVal2 on PyPi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: "3.11"
- name: Install pep517
run: >-
python -m
pip install
pep517
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
pep517.build
--source
--binary
--out-dir dist/
.
#- name: Publish distribution πŸ“¦ to Test PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.test_pypi_password }}
# repository_url: https://test.pypi.org/legacy/
- name: Publish distribution πŸ“¦ to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}