We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25cfc00 commit fce54eeCopy full SHA for fce54ee
.github/workflows/release.yml
@@ -5,7 +5,7 @@ on:
5
- "v*"
6
7
jobs:
8
- release:
+ release-x64:
9
runs-on: ${{ matrix.os }}
10
11
strategy:
@@ -23,4 +23,25 @@ jobs:
23
- name: publish
24
env:
25
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- run: yarn publish && yarn publish --arch=arm64
+ run: yarn publish
27
+
28
+ # separate job for parallel building
29
+ release-arm64:
30
+ runs-on: ${{ matrix.os }}
31
32
+ strategy:
33
+ matrix:
34
+ os: [macos-latest, ubuntu-latest] # don't run on windows
35
36
+ steps:
37
+ - uses: actions/checkout@main
38
+ - uses: actions/setup-node@main
39
+ with:
40
+ node-version: 16
41
+ cache: yarn
42
+ - name: install dependencies
43
+ run: yarn
44
+ - name: publish
45
+ env:
46
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
+ run: yarn publish --arch=arm64
0 commit comments