Skip to content

Commit d4c4436

Browse files
committed
Make everything use npm and not a mix of tools
1 parent 6422d7f commit d4c4436

File tree

2 files changed

+4
-4050
lines changed

2 files changed

+4
-4050
lines changed

.github/workflows/latest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
with:
1616
node-version: '16.x'
1717
- name: Install deps
18-
run: yarn install --ignore-scripts
18+
run: npm install
1919
- name: Build nodegui
20-
run: npx tsc
20+
run: npm run build
2121
- name: Archive using npm pack
2222
run: npm --no-git-tag-version version 0.0.0-latest-master && npm pack
2323
- uses: actions/upload-artifact@v1
@@ -32,9 +32,9 @@ jobs:
3232
body: >
3333
Latest auto release corresponding to commit ${{github.sha}} 🔥.
3434
To install do:
35-
`yarn install https://github.com/nodegui/nodegui/releases/download/v0.0.0-latest-master/nodegui-master.tgz`
35+
`npm install https://github.com/nodegui/nodegui/releases/download/v0.0.0-latest-master/nodegui-master.tgz`
3636
or
37-
`yarn install http://master-release.nodegui.org`
37+
`npm install http://master-release.nodegui.org`
3838
assets: >
3939
nodegui-nodegui-0.0.0-latest-master.tgz:nodegui-master.tgz:application/tar+gzip
4040
recreate: true

0 commit comments

Comments
 (0)