From f3b6a59ac92ff74eb6b62ab8ae49100f06917056 Mon Sep 17 00:00:00 2001 From: oxy Date: Sun, 26 Nov 2023 12:22:12 +0800 Subject: [PATCH] ci: release.yml --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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..a24e6b146 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Publish Release +on: + push: + tags: + - 'v*' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Create a Release + uses: elgohr/Github-Release-Action@v5 + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} + with: + title: MyReleaseMessage \ No newline at end of file