Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Commit 78d57b7

Browse files
committed
Save a working version for windows and linux
1 parent cf965e5 commit 78d57b7

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

.github/workflows/main.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,27 @@ on:
55
tags: ['v*']
66

77
jobs:
8-
# build_windows:
9-
# runs-on: windows-2019
10-
# steps:
11-
# - uses: actions/checkout@v2
12-
# - name: Install dependencies
13-
# run: npm ci
14-
# - name: Run the build
15-
# run: npm run build
16-
# - name: Upload to a release
17-
# uses: softprops/action-gh-release@v1
18-
# env:
19-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20-
# with:
21-
# draft: true
22-
# files: |
23-
# _dist/RELEASES
24-
# _dist/*.exe
25-
# _dist/*.nupkg
26-
#
27-
# build_linux:
28-
# runs-on: ubuntu-18.04
29-
# steps:
30-
# - uses: actions/checkout@v2
31-
# - name: Install dependencies
32-
# run: npm ci
33-
# - name: Run the build
34-
# run: npm run build
35-
# - name: Upload to a release
36-
# uses: softprops/action-gh-release@v1
37-
# env:
38-
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39-
# with:
40-
# draft: true
41-
# files: |
42-
# _dist/*.AppImage
8+
build_windows:
9+
runs-on: windows-2019
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: Install dependencies
13+
run: npm ci
14+
- name: Run the build
15+
run: npm run build
16+
- name: Upload to a release
17+
uses: softprops/action-gh-release@v1
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
draft: true
22+
files: |
23+
_dist/RELEASES
24+
_dist/*.exe
25+
_dist/*.nupkg
4326
44-
build_mac:
45-
runs-on: macos-latest
27+
build_linux:
28+
runs-on: ubuntu-18.04
4629
steps:
4730
- uses: actions/checkout@v2
4831
- name: Install dependencies
@@ -56,5 +39,22 @@ jobs:
5639
with:
5740
draft: true
5841
files: |
59-
_dist/*.zip
60-
_dist/*.dmg
42+
_dist/*.AppImage
43+
44+
# build_mac:
45+
# runs-on: macos-latest
46+
# steps:
47+
# - uses: actions/checkout@v2
48+
# - name: Install dependencies
49+
# run: npm ci
50+
# - name: Run the build
51+
# run: npm run build
52+
# - name: Upload to a release
53+
# uses: softprops/action-gh-release@v1
54+
# env:
55+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
# with:
57+
# draft: true
58+
# files: |
59+
# _dist/*.zip
60+
# _dist/*.dmg

0 commit comments

Comments
 (0)