fix(EditorMd): 解决页面上有md编辑器时,刷新页面,页面自动滚动到某个位置的问题 (#1825) #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto publish | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: CheckOut Code | |
uses: actions/checkout@master | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: 'https://registry.npmjs.org' | |
- name: Get package version | |
uses: tyankatsu0105/read-package-version-actions@v1 | |
id: package-version | |
with: | |
path: packages/devui-vue | |
- name: Create a tag | |
uses: negz/create-tag@v1 | |
with: | |
version: v${{ steps.package-version.outputs.version }} | |
message: 'Release v${{ steps.package-version.outputs.version }}' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Build Scripts | |
working-directory: packages/devui-vue/ | |
run: | | |
ls | |
node -v | |
npm install pnpm -g | |
pnpm -v | |
pnpm install --no-frozen-lockfile | |
pnpm run build:lib | |
- name: Publish | |
working-directory: packages/devui-vue/build | |
run: | | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: v${{ steps.package-version.outputs.version }} | |
generate_release_notes: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} |