Skip to content

Merge pull request #17 from MetroStar/544-fix-pypi-images #12

Merge pull request #17 from MetroStar/544-fix-pypi-images

Merge pull request #17 from MetroStar/544-fix-pypi-images #12

Workflow file for this run

name: Publish to PyPI
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/nebari-plugin-self-registration
permissions:
id-token: write
steps:
- name: Checkout Image
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Hatch
run: pip install hatch
- name: Build
run: hatch build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1