We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5248e49 commit e595d46Copy full SHA for e595d46
.github/workflows/test.yml .github/workflows/ci.yml.github/workflows/test.yml renamed to .github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: NiaARM
+name: NiaARM Tests
2
3
on:
4
push:
.github/workflows/publish.yml
@@ -0,0 +1,25 @@
+name: Publish NiaARM to PyPI
+on:
+ release:
+ types:
5
+ - published
6
+
7
+jobs:
8
+ run:
9
+ runs-on: ubuntu-latest
10
+ environment:
11
+ name: pypi
12
+ permissions:
13
+ id-token: write
14
+ contents: read
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v6
18
+ - name: Install uv and set up Python
19
+ uses: astral-sh/setup-uv@v7
20
+ with:
21
+ python-version: "3.13"
22
+ - name: Build
23
+ run: uv build
24
+ - name: Publish
25
+ run: uv publish
0 commit comments