Skip to content

[bindings] Create SymbolizedError from string RemoteObjects with details #137

[bindings] Create SymbolizedError from string RemoteObjects with details

[bindings] Create SymbolizedError from string RemoteObjects with details #137

name: publish-on-tag
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- name: Update npm
run: npm install -g npm@latest
- name: Publish
env:
TAG_NAME: ${{github.ref_name}}
run: |
rm .npmrc
npm version --no-git-tag-version $TAG_NAME
npm publish --provenance --access public