Skip to content

Commit

Permalink
add github action workflow for pypi publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jornbr committed May 15, 2024
1 parent 9d8459a commit 5b255d9
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Set update schedule for GitHub Actions

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
38 changes: 38 additions & 0 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish Python to PyPI

on: push

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install build
run: pip install build
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: Publish distribution to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/${{ github.event.repository.name }}
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ build-backend = "hatchling.build"
[project]
name = "pyncview"
version = "0.99.38"
readme = "README.md"
dependencies = [
"xmlplot>=0.9.28",
]
authors = [
{name = "Jorn Bruggeman", email = "[email protected]"}
]
license = {file = "LICENSE"}
description = "NetCDF viewer written in Python"
requires-python = ">=3.8"
classifiers = [
Expand Down

0 comments on commit 5b255d9

Please sign in to comment.