-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (52 loc) · 1.95 KB
/
publish-wasm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Publish NPM
on:
push:
branches:
- master
paths:
- '.github/workflows/publish-wasm.yml'
- 'src/Bannerlord.ModuleManager.DotNetJS/**.*'
- 'src/Bannerlord.ModuleManager.TypeScript/**.*'
workflow_dispatch:
jobs:
publish:
name: Publish on NPM and GPR
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup .NET 8
uses: actions/setup-dotnet@master
with:
dotnet-version: 8.x.x
- uses: actions/[email protected]
with:
node-version: 16
cache: 'npm'
cache-dependency-path: src/Bannerlord.ModuleManager.TypeScript/package-lock.json
- run: |
cd ./src/Bannerlord.ModuleManager.TypeScript && \
npm version $(node -p "require('./package.json').version = \
require('./package.json').version.split('.')[0]+'.' + \
require('./package.json').version.split('.')[1]+'.' + \
$(git rev-list --no-merges --count master)") --no-git-tag-version --allow-same-version;
- run: cd ./src/Bannerlord.ModuleManager.TypeScript && npm ci
- run: cd ./src/Bannerlord.ModuleManager.TypeScript && npm run build
- run: cd ./src/Bannerlord.ModuleManager.TypeScript && npm run test
- uses: actions/[email protected]
with:
node-version: 16
registry-url: https://registry.npmjs.org/
scope: '@butr'
- run: cd ./src/Bannerlord.ModuleManager.TypeScript && npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_NPM_TOKEN}}
- uses: actions/[email protected]
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
scope: '@butr'
- run: cd ./src/Bannerlord.ModuleManager.TypeScript && npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.PUBLISH_GITHUB_TOKEN}}