Skip to content

1.1.1

1.1.1 #4

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
env:
NODE_VERSION: 16.x
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm publish
working-directory: dist/packages/react-global
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}