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 937896c commit a60cf2eCopy full SHA for a60cf2e
.github/workflows/bundle.yml
@@ -20,10 +20,12 @@ jobs:
20
- uses: actions/setup-python@v5
21
with:
22
python-version: 3.12
23
- - run: pip install pyinstaller
24
- - run: pyinstaller --name scim2 --onefile scim2_cli/__init__.py
+ - run: pip install poetry
+ - run: poetry install
25
+ - run: poetry run pip install pyinstaller
26
+ - run: poetry run pyinstaller --name scim2 --onefile scim2_cli/__init__.py
27
- run: ./dist/scim2
28
- uses: actions/upload-artifact@v4
29
- name: scim2-${{ github.ref_name }}
30
+ name: scim2-${{ vars.GITHUB_REF_NAME }}-${{ vars.RUNNER_OS }}
31
path: dist/scim2
0 commit comments