Skip to content

v1.24.7-beta.3

v1.24.7-beta.3 #39

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
# - name: ChangeLog
# run: npx changelogithub
# env:
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Install
run: |
git config --global --add url."https://${{ secrets.GITLAB_USERNAME }}:${{ secrets.GITLAB_PASSWORD }}@code.guanmai.cn".insteadOf "https://code.guanmai.cn"
yarn
- name: Publish packages
run:
yarn lerna publish from-package --no-verify-access --yes