Skip to content

Commit 4d04001

Browse files
committedApr 10, 2020
remove matrix publish
1 parent e095656 commit 4d04001

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed
 

‎.github/workflows/npmpublish.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ jobs:
2222
publish-npm:
2323
needs: test
2424
runs-on: ubuntu-latest
25-
strategy:
26-
matrix:
27-
node: ['10', '12']
2825
steps:
2926
- uses: actions/checkout@v2
3027
- uses: actions/setup-node@v1
3128
with:
32-
node-version: ${{ matrix.node }}
29+
node-version: 10
3330
registry-url: https://registry.npmjs.org/
3431
- run: yarn install --frozen-lockfile
3532
- run: yarn build
@@ -40,14 +37,11 @@ jobs:
4037
publish-gpr:
4138
needs: test
4239
runs-on: ubuntu-latest
43-
strategy:
44-
matrix:
45-
node: ['10', '12']
4640
steps:
4741
- uses: actions/checkout@v2
4842
- uses: actions/setup-node@v1
4943
with:
50-
node-version: ${{ matrix.node }}
44+
node-version: 10
5145
registry-url: https://npm.pkg.github.com/
5246
- run: yarn install --frozen-lockfile
5347
- run: yarn build

0 commit comments

Comments
 (0)
Please sign in to comment.