Start writing GitHub Actions workflow

This commit is contained in:
Elian Doran 2023-11-09 20:36:06 +02:00
parent a5c150baba
commit fe82b1d2d6
2 changed files with 17 additions and 0 deletions

16
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Release
on:
push:
jobs:
build-windows-installer:
name: Build Windows Installer
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Run installer build
run: npm run make

View File

@ -10,6 +10,7 @@
"email": "zadam.apps@gmail.com",
"url": "https://github.com/zadam"
},
"copyright": "",
"bin": {
"trilium": "./src/www"
},