Skip to content

Commit 4300e6e

Browse files
committed
Fix: move shell: bash to correct location in release workflow
1 parent 36bb084 commit 4300e6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,22 +103,22 @@ jobs:
103103
- name: Update version in pyproject.toml
104104
run: |
105105
poetry version ${{ steps.get_version.outputs.version }}
106-
shell: bash
106+
shell: bash
107107

108108
- name: Build wheel and sdist
109109
run: |
110110
poetry build
111-
shell: bash
111+
shell: bash
112112

113113
- name: Install PyInstaller
114114
run: |
115115
poetry add --group dev pyinstaller
116-
shell: bash
116+
shell: bash
117117

118118
- name: Build standalone executable
119119
run: |
120120
poetry run pyinstaller --onefile --name mdbub-${{ matrix.platform }} src/mdbub/cli.py
121-
shell: bash
121+
shell: bash
122122

123123
- name: Upload build artifacts
124124
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)