This repository was archived by the owner on Jun 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +391
-327
lines changed Expand file tree Collapse file tree 7 files changed +391
-327
lines changed Original file line number Diff line number Diff line change 1
1
name : Dev
2
2
on :
3
3
push :
4
+ branches :
5
+ - ' !develop'
6
+ - ' !feature/update*'
4
7
jobs :
5
8
build_docker :
6
9
name : Build Docker image
10
13
- name : Set up node & dependencies
11
14
uses : actions/setup-node@v4
12
15
with :
13
- node-version : 18
16
+ node-version : 20
14
17
cache : " npm"
15
18
- run : npm ci
16
19
- name : Run the TypeScript build
Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- ' develop'
6
+ - ' feature/update*'
6
7
env :
7
8
REGISTRY : ghcr.io
8
9
IMAGE_NAME : ${{ github.repository }}
15
16
- name : Set up node & dependencies
16
17
uses : actions/setup-node@v4
17
18
with :
18
- node-version : 18
19
+ node-version : 20
19
20
cache : " npm"
20
21
- run : npm ci
21
22
- run : ./bin/build-mac-x64.sh
31
32
- name : Set up node & dependencies
32
33
uses : actions/setup-node@v4
33
34
with :
34
- node-version : 18
35
+ node-version : 20
35
36
cache : " npm"
36
37
- run : npm ci
37
38
- run : ./bin/build-mac-arm64.sh
47
48
- name : Set up node & dependencies
48
49
uses : actions/setup-node@v4
49
50
with :
50
- node-version : 18
51
+ node-version : 20
51
52
cache : " npm"
52
53
- run : npm ci
53
54
- run : ./bin/build-linux-x64.sh
67
68
- name : Set up node & dependencies
68
69
uses : actions/setup-node@v4
69
70
with :
70
- node-version : 18
71
+ node-version : 20
71
72
cache : " npm"
72
73
- run : npm ci
73
74
- run : ./bin/build-server.sh
90
91
- name : Set up node & dependencies
91
92
uses : actions/setup-node@v4
92
93
with :
93
- node-version : 18
94
+ node-version : 20
94
95
cache : " npm"
95
96
- run : npm ci
96
97
- run : ./bin/build-win-x64.sh
@@ -122,7 +123,7 @@ jobs:
122
123
- name : Set up node & dependencies
123
124
uses : actions/setup-node@v4
124
125
with :
125
- node-version : 18
126
+ node-version : 20
126
127
cache : " npm"
127
128
- run : npm ci
128
129
- name : Run the TypeScript build
Original file line number Diff line number Diff line change 2
2
file : .gitpod.dockerfile
3
3
4
4
tasks :
5
- - before : nvm install 18.18.2 && nvm use 18.18.2
5
+ - before : nvm install 20.15.1 && nvm use 20.15.1
6
6
init : npm install
7
7
command : npm run start-server
8
8
Original file line number Diff line number Diff line change 1
1
# !!! Don't try to build this Dockerfile directly, run it through bin/build-docker.sh script !!!
2
- FROM node:18.18.2 -alpine
2
+ FROM node:20.15.1 -alpine
3
3
4
4
# Configure system dependencies
5
5
RUN apk add --no-cache --virtual .build-dependencies \
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
3
PKG_DIR=dist/trilium-linux-x64-server
4
- NODE_VERSION=18.18.2
4
+ NODE_VERSION=20.15.1
5
5
6
6
if [ " $1 " != " DONTCOPY" ]
7
7
then
You can’t perform that action at this time.
0 commit comments