mirror of
https://github.com/doocs/md.git
synced 2025-01-23 04:14:42 +08:00
741322d69e
* chore: update layout * fix: package * style: adjust layout * style: enhance layout and border styling in CodemirrorEditor.vue * style: improve transition effects for PostSlider and RightSlider by a hack way * style: refine border and footer layout * style: update icon * style: set select-none * chore: remove overflow property * style: reset code block theme * chore: rename `文章` to `内容` --------- Co-authored-by: dribble-njr <wzw15292257101@163.com> Co-authored-by: yanglbme <szuyanglb@outlook.com>
33 lines
936 B
YAML
33 lines
936 B
YAML
name: Create Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
build:
|
|
name: Create Release
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'doocs/md'
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ github.ref }}
|
|
release_name: ${{ github.ref }}
|
|
body: |
|
|
# 微信 Markdown 编辑器 ${{ github.ref }} 发布🎈
|
|
|
|
[![github](https://badgen.net/badge/>>/GitHub/cyan)](https://github.com/doocs/md/releases) [![gitee](https://badgen.net/badge/>>/Gitee/cyan)](https://gitee.com/doocs/md/releases)
|
|
|
|
> Markdown 文档自动即时渲染为微信图文,让你不再为微信内容排版而发愁!
|
|
|
|
draft: false
|
|
prerelease: false
|