Skip to content

Commit 6bf0c73

Browse files
committed
v0.1.3
1 parent 53759c8 commit 6bf0c73

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/release.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
name: Release
2+
13
on:
24
push:
35
tags:
46
- "v*"
57

6-
permissions:
7-
contents: write
8-
98
jobs:
109
release:
1110
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
id-token: write
1214
steps:
1315
- uses: actions/checkout@v4
1416
with:
@@ -19,9 +21,12 @@ jobs:
1921
- uses: eifinger/setup-rye@v3
2022
with:
2123
version: latest
22-
- run: |
23-
rye build
24-
rye publish
24+
25+
- run: rye build
26+
27+
- name: Publish distribution 📦 to PyPI
28+
uses: pypa/gh-action-pypi-publish@release/v1
29+
2530
- run: deno run -A 'npm:[email protected]'
2631
env:
2732
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "quak"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
dependencies = [
99
"anywidget",
1010
"pyarrow>=16.0.0",

0 commit comments

Comments
 (0)