File tree Expand file tree Collapse file tree 1 file changed +38
-38
lines changed
Expand file tree Collapse file tree 1 file changed +38
-38
lines changed Original file line number Diff line number Diff line change 1- name : Publish Windows Bundle
1+ # name: Publish Windows Bundle
22
3- on :
4- push :
5- branches :
6- - master
7- tags :
8- - v*
3+ # on:
4+ # push:
5+ # branches:
6+ # - master
7+ # tags:
8+ # - v*
99
10- jobs :
11- build :
12- runs-on : windows-latest
13- steps :
14- - name : Checkout
15- uses : actions/checkout@v2
16- - name : Setup NodeJS
17- uses : actions/setup-node@v2
18- with :
19- node-version : ' 12'
20- - name : Setup Env
21- run : |
22- npm i
23- npm i -g nexe
24- - name : Build bundle
25- run : |
26- npm run winbundle
27- - name : Upload Bundle File
28- uses : actions/upload-artifact@v2
29- with :
30- name : Bundle
31- path : dist\*.zip
32- - name : Upload Bundle to Release
33- uses : svenstaro/upload-release-action@v2
34- if : startsWith(github.ref, 'refs/tags/')
35- with :
36- repo_token : ${{ secrets.GITHUB_TOKEN }}
37- file : dist\*.zip
38- file_glob : true
39- tag : ${{ github.ref }}
40- overwrite : true
10+ # jobs:
11+ # build:
12+ # runs-on: windows-latest
13+ # steps:
14+ # - name: Checkout
15+ # uses: actions/checkout@v2
16+ # - name: Setup NodeJS
17+ # uses: actions/setup-node@v2
18+ # with:
19+ # node-version: '12'
20+ # - name: Setup Env
21+ # run: |
22+ # npm i
23+ # npm i -g nexe
24+ # - name: Build bundle
25+ # run: |
26+ # npm run winbundle
27+ # - name: Upload Bundle File
28+ # uses: actions/upload-artifact@v2
29+ # with:
30+ # name: Bundle
31+ # path: dist\*.zip
32+ # - name: Upload Bundle to Release
33+ # uses: svenstaro/upload-release-action@v2
34+ # if: startsWith(github.ref, 'refs/tags/')
35+ # with:
36+ # repo_token: ${{ secrets.GITHUB_TOKEN }}
37+ # file: dist\*.zip
38+ # file_glob: true
39+ # tag: ${{ github.ref }}
40+ # overwrite: true
4141
You can’t perform that action at this time.
0 commit comments