diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..227951182 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 \ No newline at end of file diff --git a/package.json b/package.json index 26119ec71..02ed59e0c 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "email": "zadam.apps@gmail.com", "url": "https://github.com/zadam" }, + "copyright": "", "bin": { "trilium": "./src/www" },