From: Evan You Date: Mon, 27 Apr 2020 16:26:22 +0000 (-0400) Subject: build: auto publish github release on tag push X-Git-Tag: v3.0.0-beta.5~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=311eb083344e39ea0d552fc811f4bc4911228c16;p=thirdparty%2Fvuejs%2Fcore.git build: auto publish github release on tag push --- diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml new file mode 100644 index 0000000000..a3e4854c9d --- /dev/null +++ b/.github/workflows/release-tag.yml @@ -0,0 +1,23 @@ +on: + push: + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +name: Create Release + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Create Release for Tag + id: release_tag + uses: yyx990803/release-tag@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + body: | + Please refer to CHANGELOG.md for details.