1.3.3 #15
Workflow file for this run
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: Npm RT Publish | |
on: | |
push: | |
tags: | |
- v**-rt | |
jobs: | |
publish: | |
name: Build And Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org/ | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
run_install: true | |
- name: Build | |
run: npm run build:rt | |
- name: Publish | |
run: cd packages/rt && npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |