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 6780bb7 commit 74a1914Copy full SHA for 74a1914
.github/workflows/bundle.yml
@@ -27,6 +27,14 @@ jobs:
27
- run: poetry run pyinstaller --name scim2 --onefile scim2_cli/__init__.py
28
- run: ./dist/scim2
29
- uses: actions/upload-artifact@v4
30
+ if: ${{ matrix.os != "windows-latest" }}
31
with:
- name: scim2-${{ github.ref_name }}-${{ runner.os }}
32
- path: dist/scim2
+ name: scim2-${{ github.ref_name }}-${{ matrix.os }}
33
+ path: ./dist/scim2
34
+ if-no-files-found: error
35
+ - uses: actions/upload-artifact@v4
36
+ if: ${{ matrix.os == "windows-latest" }}
37
+ with:
38
39
+ path: ./dist/scim2.exe
40
0 commit comments