File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -103,18 +103,22 @@ jobs:
103103 - name : Update version in pyproject.toml
104104 run : |
105105 poetry version ${{ steps.get_version.outputs.version }}
106+ shell: bash
106107
107108 - name : Build wheel and sdist
108109 run : |
109110 poetry build
111+ shell: bash
110112
111113 - name : Install PyInstaller
112114 run : |
113115 poetry add --group dev pyinstaller
116+ shell: bash
114117
115118 - name : Build standalone executable
116119 run : |
117120 poetry run pyinstaller --onefile --name mdbub-${{ matrix.platform }} src/mdbub/cli.py
121+ shell: bash
118122
119123 - name : Upload build artifacts
120124 uses : actions/upload-artifact@v4
@@ -198,14 +202,17 @@ jobs:
198202
199203 - name : Update version
200204 run : poetry version ${{ steps.get_version.outputs.version }}
205+ shell : bash
201206
202207 - name : Build package
203208 run : poetry build
209+ shell : bash
204210
205211 - name : Publish to PyPI
206212 env :
207213 POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
208214 run : poetry publish
215+ shell : bash
209216
210217 update-homebrew :
211218 needs : [release, publish-pypi]
You can’t perform that action at this time.
0 commit comments