From fa4c8a03ae3dbc9ea6ed471a6ab5da94ac15c2ea Mon Sep 17 00:00:00 2001 From: Xintao Date: Tue, 20 Sep 2022 19:47:38 +0800 Subject: [PATCH] add github release workflow, v0.3.0 --- .github/workflows/release.yml | 41 +++++++++++++++++++++++++++++++++++ VERSION | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..18be9e5c3 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,41 @@ +name: release +on: + push: + tags: + - '*' + +jobs: + build: + permissions: write-all + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Real-ESRGAN ${{ github.ref }} Release Note + body: | + 🚀 See you again 😸 + 🚀Have a nice day 😸 and happy everyday 😃 + 🚀 Long time no see ☄️ + + ✨ **Highlights** + ✅ [Features] Support ... + + 🐛 **Bug Fixes** + + 🌴 **Improvements** + + 📢📢📢 + +

+ +

+ draft: true + prerelease: false diff --git a/VERSION b/VERSION index 1866a362b..0d91a54c7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.9 +0.3.0