Skip to content

Commit 8c656ef

Browse files
committed
Fix: remove duplicate shell: bash keys in release workflow
1 parent 7a4ffa8 commit 8c656ef

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)