Skip to content

feat: use callback buttons #49

feat: use callback buttons

feat: use callback buttons #49

name: autodeploy
on:
push:
branches: [main]
jobs:
default:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Install Packages
run: npm install
- name: Build modules
run: npm run build
- name: Authenticate
run: |
echo "@grandcore:registry=https://registry.npmjs.org/" > .npmrc
echo "registry=https://registry.npmjs.org/" >> .npmrc
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
run: lerna publish from-package --yes --no-verify-access
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}