Skip to content

bump smqp@11

bump smqp@11 #2

Workflow file for this run

name: Publish Package
on:
push:
tags:
- 'v*'
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- name: Update npm
run: npm install -g npm@latest
- run: npm i
- run: npm publish $VERSION_TAG
env:
VERSION_TAG: ${{ endsWith(github.ref_name, '-rc') && '--tag rc' || '' }}