diff options
author | Keuin <[email protected]> | 2022-09-10 16:48:47 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-09-10 16:48:47 +0800 |
commit | 0b5a8d9d2e6b6623c05fa35c69a4913833fac44d (patch) | |
tree | d585ec225322eb23af809b6e628ce7663d1cde0c | |
parent | 78a5ac6e00ded7a7a14025be6683c331fc8dada4 (diff) |
Create create-release.yml
-rw-r--r-- | .github/workflows/create-release.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 0000000..4ef4851 --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,24 @@ +on: + push: + # Sequence of patterns matched against refs/tags + 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@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + prerelease: true |