Skip to content

Commit

Permalink
Merge pull request #1 from jbusecke/patch-1
Browse files Browse the repository at this point in the history
Add release workflow
  • Loading branch information
norlandrhagen authored Nov 16, 2023
2 parents 8ad1738 + d8a7221 commit bfb523d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-latest
if: github.repository == 'carbonplan/pangeo-forge-bigquery'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools setuptools-scm build twine
- name: Build and publish
env:
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build
twine check dist/*
twine upload dist/*

0 comments on commit bfb523d

Please sign in to comment.