Skip to content

fix(frontier): revert removal of some deprecated fields (#468) #61

fix(frontier): revert removal of some deprecated fields (#468)

fix(frontier): revert removal of some deprecated fields (#468) #61

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-action@v1
with:
setup_only: true
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
working-directory: ./js
- name: Generate code
run: npm run build -- --hash=${{ github.sha }}
working-directory: ./js
- name: Publish
run: npm publish --access public
working-directory: ./js/dist
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}