md/.github/workflows/release.yml
YangFong 741322d69e
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
Build and Push Docker Images / build (push) Has been skipped
chore: update layout (#493)
* 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>
2025-01-10 08:31:33 +08:00

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