From 70d98ba919b3cb6486b8f276a262c413ee47012b Mon Sep 17 00:00:00 2001 From: Amanbolat Date: Sun, 11 Jun 2023 18:01:46 +0800 Subject: [PATCH] add releaser workflow --- .github/workflows/release.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..f6ee305 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,17 @@ +name: Release + +on: + push: + tags: + - "v*.*.*" + +jobs: + build: + runs-on: ubuntu-22.04 + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Release + uses: softprops/action-gh-release@v1