Skip to content

Commit 8fe10cb

Browse files
[HOTFIX] Deployment hotfix
Changes in file .github/workflows/CD-PyPi.yml: ensure shell is running bash
1 parent 65ec2a7 commit 8fe10cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/CD-PyPi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ jobs:
4040
python-version: "${{ vars.PYTHON_DEFAULT }}"
4141
- name: Pre-Clean
4242
id: clean
43+
shell: bash
4344
run: make -j1 -f Makefile purge 2>/dev/null || true
4445
- name: Build
4546
id: build
46-
run: make -j1 -f Makefile build
47+
shell: bash
48+
run: make -j1 -f Makefile dist
4749
- name: Publish package distributions to PyPI
4850
if: ${{ success() }}
4951
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)