create-chayns-app 1.1.11 → 1.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,8 +2,9 @@ name: Publish to NPM
2
2
 
3
3
  on:
4
4
  workflow_dispatch:
5
- release:
6
- types: [published]
5
+ push:
6
+ tags:
7
+ - 'v*'
7
8
 
8
9
  jobs:
9
10
  build:
@@ -12,9 +13,9 @@ jobs:
12
13
  - uses: actions/checkout@v2
13
14
  - uses: actions/setup-node@v1
14
15
  with:
15
- node-version: '12.19.0'
16
+ node-version: '20'
16
17
  registry-url: https://registry.npmjs.org/
17
- - run: npm install --immutable
18
+ - run: npm ci
18
19
  - run: npm publish
19
20
  env:
20
21
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}