Skip to content

Commit

Permalink
added workflow to publish to pip
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed Feb 26, 2024
1 parent 8bf6a95 commit 9868bd7
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish Icesat2 to PyPI

on:
pull_request: {}
push:
branches:
- feature-publish-pypi
# release:
# types: [published]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m twine upload --skip-existing --repository pypi dist/*

0 comments on commit 9868bd7

Please sign in to comment.