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.
2 parents ea16f58 + 8e2de5f commit a699ea6Copy full SHA for a699ea6
.github/workflows/release.yml
@@ -0,0 +1,25 @@
1
+name: pyreleaser
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: "checkout"
11
+ uses: actions/checkout@v4
12
+ - name: "fetch unshallow"
13
+ run: git fetch --prune --unshallow
14
+ - name: "list"
15
+ run: pwd && ls -la
16
+ - name: "deps"
17
+ run: python -m pip install -r requirements.txt
18
+ - name: "package"
19
+ run: python -m build .
20
21
+ run: ls -la ./dist/
22
+ - name: "release"
23
+ uses: ncipollo/[email protected]
24
+ with:
25
+ artifacts: "dist/*"
0 commit comments