We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad7a29a commit b55e93cCopy full SHA for b55e93c
.github/workflows/build.yml
.github/workflows/main.yml
@@ -115,6 +115,24 @@ jobs:
115
with:
116
name: trilium-windows-x64
117
path: dist/trilium-windows-x64
118
+ build_windows-installer:
119
+ name: Build Windows x86_64 (Setup)
120
+ runs-on: windows-latest
121
+ steps:
122
+ - uses: actions/checkout@v4
123
+ - name: Set up node & dependencies
124
+ uses: actions/setup-node@v4
125
+ with:
126
+ node-version: 20
127
+ cache: "npm"
128
+ - run: npm ci
129
+ - name: Run installer build
130
+ run: npm run make-electron
131
+ - name: Publish installer artifact
132
+ uses: actions/upload-artifact@v4
133
134
+ name: TriliumNext Notes for Windows (Setup)
135
+ path: out/make/squirrel.windows/x64/*.exe
136
build_docker:
137
name: Build Docker image
138
runs-on: ubuntu-latest
.github/workflows/release.yml
0 commit comments