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 74a1914 commit ba75b06Copy full SHA for ba75b06
.github/workflows/bundle.yml
@@ -27,13 +27,13 @@ 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" }}
+ if: ${{ matrix.os != 'windows-latest' }}
31
with:
32
name: scim2-${{ github.ref_name }}-${{ matrix.os }}
33
path: ./dist/scim2
34
if-no-files-found: error
35
36
- if: ${{ matrix.os == "windows-latest" }}
+ if: ${{ matrix.os == 'windows-latest' }}
37
38
39
path: ./dist/scim2.exe
0 commit comments