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

ci: version bump to release/v0.5.6 #13

ci: version bump to release/v0.5.6

ci: version bump to release/v0.5.6 #13

Workflow file for this run

name: 📢 publish
on:
push:
tags:
- 'release/**'
env:
NODE_VERSION: 20
jobs:
publish:
name: 📢 Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Build Library
run: npm run build:ci
- name: Publish to NPM Package Registry
run: |
cd dist
npm publish --access=public
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.CI_NPM_REGISTRY }}