Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

ci: version bump to release/v0.0.7 #14

ci: version bump to release/v0.0.7

ci: version bump to release/v0.0.7 #14

Workflow file for this run

name: 📢 publish
on:
push:
tags:
- 'release/**'
jobs:
publish:
name: 📢 Publish
permissions:
packages: write
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
# publish to npmjs.com
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Publish to NPM Package Registry
run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_REGISTRY }}