Skip to content

Commit adf2489

Browse files
committed
Fix release type
1 parent 3ece43c commit adf2489

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ jobs:
5656
strategy:
5757
matrix:
5858
os: [ubuntu-latest, macos-latest]
59-
node: [19]
6059

6160
permissions:
6261
pull-requests: write
@@ -69,7 +68,7 @@ jobs:
6968
- name: Use Node.js ${{ matrix.node-version }}
7069
uses: actions/setup-node@v3
7170
with:
72-
node-version: ${{ matrix.node-version }}
71+
node-version: ${{ env.node_version }}
7372
- run: npm i
7473
- run: npm run pkg
7574
env:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest]
15-
node: [19]
15+
node: ['19']
1616

1717
steps:
1818
- uses: actions/checkout@v3

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
},
1616
"build": {
1717
"appId": "com.hypermodules.hyperamp",
18+
"publish": {
19+
"provider": "github",
20+
"releaseType": "release"
21+
},
1822
"files": [
1923
"lib/",
2024
"main/",

0 commit comments

Comments
 (0)