Skip to content

Commit 50cdc03

Browse files
committed
fix: matrix
1 parent 4393a2d commit 50cdc03

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ on:
77

88
jobs:
99
build-and-release:
10-
runs-on: ${{ matrix.runs-on }}
10+
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
runs-on: [ubuntu-latest, windows-latest, macOS-latest]
14-
arch: [x64, arm64]
15-
node-version: ['node18']
16-
include:
17-
- runs-on: ubuntu-latest
18-
os: linux
19-
- runs-on: windows-latest
20-
os: win
21-
- runs-on: macOS-latest
22-
os: macos
13+
arch:
14+
- x64
15+
- arm64
16+
node-version:
17+
- node16
18+
os:
19+
- linux
20+
- macos
21+
- win
22+
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v3
@@ -28,7 +28,7 @@ jobs:
2828
id: pkg-action
2929
uses: lando/pkg-action@v2
3030
with:
31-
entrypoint: bin/run
31+
entrypoint: .
3232
arch: ${{ matrix.arch }}
3333
node-version: ${{ matrix.node-version }}
3434
os: ${{ matrix.os }}

0 commit comments

Comments
 (0)