This repository was archived by the owner on Aug 9, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 steps :
88 - uses : actions/setup-node@master
99 with :
10- node-version : " 14.x"
10+ node-version : " 14.x"
1111 - name : Set up Python 3.8
1212 uses : actions/setup-python@v1
1313 with :
1414 python-version : 3.8
1515 - name : Ubuntu dependencies
1616 run : sudo apt-get install libgtk-3-dev
17-
17+
1818 - uses : actions/checkout@v2
1919 with :
2020 ref : ${{ github.ref }}
2323 run : node build.js
2424 env :
2525 SYNC_GIT_SUBMODULE : 1
26-
26+
2727 - name : Compress files
2828 uses : master-atul/tar-action@v1.0.2
2929 with :
@@ -32,17 +32,16 @@ jobs:
3232 files : |
3333 ./qode
3434 outPath : qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
35-
35+
3636 - uses : actions/upload-artifact@v1
3737 with :
3838 name : qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
3939 path : qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
40-
41-
40+
4241 - name : Release
4342 uses : softprops/action-gh-release@master
4443 with :
4544 files : qode-linux-x64-${{github.event.release.tag_name}}.tar.gz
4645 tag_name : ${{ github.event.release.tag_name }}
4746 env :
48- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 77 steps :
88 - uses : actions/setup-node@master
99 with :
10- node-version : " 14.x"
10+ node-version : " 14.x"
1111 - name : Set up Python 3.8
1212 uses : actions/setup-python@v1
1313 with :
@@ -34,11 +34,11 @@ jobs:
3434 with :
3535 name : qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
3636 path : qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
37-
37+
3838 - name : Release
3939 uses : softprops/action-gh-release@master
4040 with :
4141 files : qode-darwin-x64-${{github.event.release.tag_name}}.tar.gz
4242 tag_name : ${{ github.event.release.tag_name }}
4343 env :
44- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 77 steps :
88 - uses : actions/setup-node@master
99 with :
10- node-version : " 14.x"
11- - name : Set up Python 3.8
12- uses : actions/setup-python@v1
10+ node-version : " 14.x"
11+ - name : Set up Python 2.x
12+ uses : actions/setup-python@v2
1313 with :
14- python-version : 3.8
14+ python-version : 2.7
1515 - name : " Setup NASM for windows"
1616 uses : ilammy/setup-nasm@v1
17- - name : Install Python2 for windows
18- uses : actions/setup-python@v1
19- with :
20- python-version : ' 2.x'
21-
17+
2218 - uses : actions/checkout@v2
2319 with :
2420 ref : ${{ github.ref }}
2723 run : node build.js
2824 env :
2925 SYNC_GIT_SUBMODULE : 1
30-
26+
3127 - name : Compress files
3228 uses : master-atul/tar-action@v1.0.2
3329 id : compress
3935 ./qode.lib
4036 ./qode.exp
4137 outPath : qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
42-
38+
4339 - uses : actions/upload-artifact@v1
4440 with :
4541 name : qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
5147 files : qode-win32-x64-${{github.event.release.tag_name}}.tar.gz
5248 tag_name : ${{ github.event.release.tag_name }}
5349 env :
54- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
50+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ It is designed to be used together with `@nodegui/nodegui`. Qode achieves this b
1717> Now, Qode essentially becomes nodejs + ` <some code changes to allow message loop injection via an addon> `
1818
1919
20+
2021### Note:
2122
2223Qode is published as a NPM module as ` @nodegui/qode ` .
Original file line number Diff line number Diff line change 11#!/usr/bin/env node
22
33const path = require ( "path" ) ;
4- const os = require ( 'os' ) ;
4+ const os = require ( "os" ) ;
55
66//==================================
77// HELPER UTILITIES
You can’t perform that action at this time.
0 commit comments