+2
-1
.tangled/workflows/npm_publish.yml
+2
-1
.tangled/workflows/npm_publish.yml
···
5
5
dependencies:
6
6
nixpkgs:
7
7
- nodejs
8
+
- gnugrep
8
9
9
10
steps:
10
11
- name: "Install dependencies"
11
12
command: "npm install"
12
13
13
14
- name: "tsc"
14
-
nommand: "npx tsc"
15
+
nommand: "npx tsc && echo 'done.'"
15
16
16
17
- name: "npm publish"
17
18
command: "git log -1 --pretty=%B | grep -q '^publish new version' && npm publish --access public --token ${NPM_TOKEN}"