Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 9c2d1e0

Browse files
committed
UExplicitly set shell on prebuild runs
1 parent b65fb44 commit 9c2d1e0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Diff for: .github/workflows/tagged_release.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ ubuntu-latest, windows-latest, macos-latest ]
12-
node: [ 10, 12, 14]
12+
node: [ 14]
1313
task: [ prebuild ]
1414
runtime: [ node ]
15+
target: [ "12.0.0", "14.0.0", "15.0.0" ]
1516
runs-on: ${{matrix.os}}
1617
steps:
1718
- name: Set up Git repository
@@ -23,7 +24,8 @@ jobs:
2324
- name: Install
2425
run: npm install --unsafe-perm
2526
- name: Publish prebuild
26-
run: npm run prebuild -- -t ${{matrix.node}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}
27+
shell: bash
28+
run: npm run prebuild -- -t ${{matrix.target}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}
2729

2830
prebuild-electron:
2931
strategy:
@@ -44,4 +46,5 @@ jobs:
4446
- name: Install
4547
run: npm install --unsafe-perm
4648
- name: Publish prebuild
49+
shell: bash
4750
run: npm run prebuild -- -t ${{matrix.target}} -r ${{matrix.runtime}} --include-regex "\.(node|a|so|dylib|lib|dll).*$" -u ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)