Skip to content

Commit ba75b06

Browse files
committed
chore: attempt to fix GHA syntax
1 parent 74a1914 commit ba75b06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bundle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
- run: poetry run pyinstaller --name scim2 --onefile scim2_cli/__init__.py
2828
- run: ./dist/scim2
2929
- uses: actions/upload-artifact@v4
30-
if: ${{ matrix.os != "windows-latest" }}
30+
if: ${{ matrix.os != 'windows-latest' }}
3131
with:
3232
name: scim2-${{ github.ref_name }}-${{ matrix.os }}
3333
path: ./dist/scim2
3434
if-no-files-found: error
3535
- uses: actions/upload-artifact@v4
36-
if: ${{ matrix.os == "windows-latest" }}
36+
if: ${{ matrix.os == 'windows-latest' }}
3737
with:
3838
name: scim2-${{ github.ref_name }}-${{ matrix.os }}
3939
path: ./dist/scim2.exe

0 commit comments

Comments
 (0)