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 ef3281c commit 91b5cf2Copy full SHA for 91b5cf2
.github/workflows/release.yml
@@ -16,8 +16,12 @@ jobs:
16
uses: astral-sh/setup-uv@v3
17
with:
18
enable-cache: true
19
+ - name: build dist
20
+ run: uv sync --group bundle
21
- name: build dist
22
run: uv build
23
+ - name: build binary
24
+ run: uv run pyinstaller scim2.spec
25
- uses: actions/upload-artifact@v4
26
27
name: artifacts
@@ -28,8 +32,14 @@ jobs:
28
32
name: create Github release
29
33
runs-on: ubuntu-latest
30
34
steps:
35
+ - uses: actions/download-artifact@v4
36
+ with:
37
+ name: artifacts
38
+ path: dist
31
39
- uses: softprops/action-gh-release@v2
-
40
41
+ files: |
42
+ dist/scim2
43
publish:
44
name: release to pypi
45
needs: build
0 commit comments