File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,19 @@ jobs:
2424 - run : pip install poetry
2525 - run : poetry install
2626 - run : poetry run pip install pyinstaller
27- - run : poetry run pyinstaller --name scim2 --onefile scim2_cli/__init__.py
27+ - run : poetry run pyinstaller --name scim2-${{ matrix.os }} --onefile scim2_cli/__init__.py
2828 - run : ./dist/scim2
2929 - uses : actions/upload-artifact@v4
3030 if : ${{ matrix.os != 'windows-latest' }}
3131 with :
3232 name : scim2-${{ github.ref_name }}-${{ matrix.os }}
33- path : ./dist/scim2
33+ path : ./dist/scim2-${{ matrix.os }}
3434 if-no-files-found : error
3535 - uses : actions/upload-artifact@v4
3636 if : ${{ matrix.os == 'windows-latest' }}
3737 with :
3838 name : scim2-${{ github.ref_name }}-${{ matrix.os }}
39- path : ./dist/scim2.exe
39+ path : ./dist/scim2-${{ matrix.os }} .exe
4040 if-no-files-found : error
4141
4242 release :
5151 - uses : softprops/action-gh-release@v2
5252 with :
5353 files :
54- scim2-${{ github.ref_name }}-*
54+ scim2-${{ github.ref_name }}-*/*
You can’t perform that action at this time.
0 commit comments