Skip to content

Commit

Permalink
Add publish to PyPI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhad6 committed Aug 29, 2024
1 parent cd4569e commit 2d66dc9
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 87 deletions.
87 changes: 0 additions & 87 deletions .github/workflows/github-pages.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Publish

on:
release:
types: [published]

env:
HATCH_VERSION: "1.12.0"
PACKAGE_NAME: "jupyterlab-open-warning"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Hatch
run: pipx install hatch==${{ env.HATCH_VERSION }}

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

- name: Build package
run: hatch build

- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.PACKAGE_NAME }}-release
path: dist

publish:
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/${{ env.PACKAGE_NAME }}
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
name: ${{ env.PACKAGE_NAME }}-release
path: dist

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 2d66dc9

Please sign in to comment.