Skip to content

Commit 728ac82

Browse files
committed
refactor: update manual release workflow to use Yarn and add build step
1 parent bb7cc57 commit 728ac82

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/manual-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
registry-url: 'https://registry.npmjs.org'
3535

3636
- name: Install dependencies
37-
run: npm ci
37+
run: yarn
38+
39+
- name: Build
40+
run: yarn build
3841

3942
- name: Create new version
4043
run: |

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"version": "0.0.11",
44
"type": "module",
55
"main": "dist/cli.js",
6-
"bin": {
7-
"sqlc-typescript": "bin/cli"
8-
},
6+
"bin": "bin/cli",
97
"files": [
108
"dist",
119
"bin"

0 commit comments

Comments
 (0)