Skip to content

Commit bfabdf6

Browse files
authored
chore(ci): Use bash shell in npm publish workflow action (#10303)
**Description:** The bash shell is needed to execute the build properly. **Related issue:** - Closes #9769
1 parent cf33196 commit bfabdf6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/publish-npm-package.yml

+3
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ jobs:
276276
with:
277277
image: ${{ matrix.settings.docker }}
278278
options: -v ${{ env.HOME }}/.cargo/git:/root/.cargo/git -v ${{ env.HOME }}/.cargo/registry:/root/.cargo/registry -v ${{ github.workspace }}:/build -w /build
279+
shell: bash
279280
run: >-
280281
cd ./packages/${{ inputs.package }} &&
281282
npm install -f -g [email protected] &&
@@ -454,6 +455,7 @@ jobs:
454455
# with:
455456
# image: node:lts-alpine
456457
# options: "--platform linux/arm64 -v ${{ github.workspace }}:/build -w /build"
458+
# shell: bash
457459
# run: >-
458460
# set -e &&
459461
# npm install -f -g [email protected] &&
@@ -501,6 +503,7 @@ jobs:
501503
# with:
502504
# image: node:${{ matrix.node }}-slim
503505
# options: "--platform linux/arm/v7 -v ${{ github.workspace }}:/build -w /build"
506+
# shell: bash
504507
# run: >-
505508
# set -e &&
506509
# npm install -f -g [email protected] &&

0 commit comments

Comments
 (0)