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 608ac26 commit 3e5dccdCopy full SHA for 3e5dccd
.github/dependabot.yml
@@ -0,0 +1,6 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
.github/workflows/release.yml
@@ -0,0 +1,17 @@
+name: Release
+
+on:
+ release:
+ types:
+ - published
7
8
+jobs:
9
+ publish:
10
+ name: Publish on PyPI
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ id-token: write
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - run: pipx run build
17
+ - uses: pypa/[email protected]
0 commit comments