Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Aug 9, 2024
1 parent 53759c8 commit 5267d98
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
name: Release

on:
push:
tags:
- "v*"

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -19,9 +21,12 @@ jobs:
- uses: eifinger/setup-rye@v3
with:
version: latest
- run: |
rye build
rye publish

- run: rye build

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

- run: deno run -A 'npm:[email protected]'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "quak"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"anywidget",
"pyarrow>=16.0.0",
Expand All @@ -14,7 +14,7 @@ readme = "README.md"

[tool.hatch.build]
only-packages = true
artifacts = ["src/quak/widget.js"]
artifacts = ["src/quak/widget.js", "scripts/hatch_build.py"]

[tool.hatch.envs.default]
installer = "uv"
Expand Down

0 comments on commit 5267d98

Please sign in to comment.