We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4393a2d commit 50cdc03Copy full SHA for 50cdc03
1 file changed
.github/workflows/release.yml
@@ -7,19 +7,19 @@ on:
7
8
jobs:
9
build-and-release:
10
- runs-on: ${{ matrix.runs-on }}
+ runs-on: ubuntu-22.04
11
strategy:
12
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
+ arch:
+ - x64
+ - arm64
+ node-version:
+ - node16
+ os:
+ - linux
+ - macos
+ - win
+
23
steps:
24
- name: Checkout
25
uses: actions/checkout@v3
@@ -28,7 +28,7 @@ jobs:
28
id: pkg-action
29
uses: lando/pkg-action@v2
30
with:
31
- entrypoint: bin/run
+ entrypoint: .
32
arch: ${{ matrix.arch }}
33
node-version: ${{ matrix.node-version }}
34
os: ${{ matrix.os }}
0 commit comments