2023-12-07 11:44:52 +08:00
|
|
|
name: Create Release
|
|
|
|
|
2021-02-28 19:37:51 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Create Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-05-10 17:23:23 +08:00
|
|
|
uses: actions/checkout@v3
|
2021-02-28 19:37:51 +08:00
|
|
|
- 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
|