Skip to content

Commit e943947

Browse files
committed
0.9.85: CI: Win build VW name + GH_TOKEN
1 parent 63e0854 commit e943947

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

.github/workflows/ci.yml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414

1515
jobs:
16-
build_linux:
16+
build_release_all:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
@@ -38,10 +38,36 @@ jobs:
3838
ls -la
3939
source build.sh
4040
41+
build_windows:
42+
runs-on: windows-latest
43+
env:
44+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
steps:
46+
- name: Checkout code
47+
uses: actions/checkout@v3
48+
49+
- name: Set up Node.js
50+
uses: actions/setup-node@v3
51+
with:
52+
node-version: '20'
53+
54+
- name: Install dependencies
55+
run: npm ci
56+
4157
- name: Build Windows package
4258
run: |
4359
npx electron-builder --config builder.yml --win nsis --x64
4460
61+
- name: Upload Windows artifacts
62+
uses: actions/upload-artifact@v4
63+
with:
64+
name: windows-dist
65+
path: dist/*
66+
67+
release:
68+
needs: [build_linux, build_windows]
69+
runs-on: ubuntu-latest
70+
steps:
4571
- name: Create Release
4672
uses: softprops/action-gh-release@v1
4773
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emulsion",
3-
"version": "0.9.84",
3+
"version": "0.9.85",
44
"summary": "Better gaming throught chemistry",
55
"description": "Display your games collection into responsive galleries, manage game metadata, cover art and emulator configuration. Launch your games in style.",
66
"homepage": "https://yphil.gitlab.io/emulsion",

0 commit comments

Comments
 (0)