Skip to content

docs: Maintenance mode #21

docs: Maintenance mode

docs: Maintenance mode #21

Workflow file for this run

name: publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- uses: bahmutov/npm-install@v1
# Seems like after squash & merge the author is unknown to lerna
- run: git config --global user.email "[email protected]" && git config --global user.name "Jan Amann"
- run: yarn run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}