Skip to content

chore: release v1.0.0-beta.2 #39

chore: release v1.0.0-beta.2

chore: release v1.0.0-beta.2 #39

Workflow file for this run

name: CI
on:
push:
branches:
- master
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
cache: pnpm
- run: pnpm -C packages/el-bot publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}