Skip to content

Replace ux with alternative libraries #12

Replace ux with alternative libraries

Replace ux with alternative libraries #12

Workflow file for this run

name: Publish Package to npmjs registry
on:
push:
tags:
- 'v**'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
- name: Publish
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}