Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:shimwell/GEOUNED into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Apr 23, 2024
2 parents 3c8116c + 0442720 commit f303ee0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Upload Python Package

on:
release:
types: [published]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit f303ee0

Please sign in to comment.