Added ApplicationVersion comparison #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 7 | |
uses: actions/setup-dotnet@master | |
with: | |
dotnet-version: 7.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}} |