diff --git a/.github/workflows/TagRelease.yml b/.github/workflows/TagRelease.yml new file mode 100644 index 000000000..0e8c32947 --- /dev/null +++ b/.github/workflows/TagRelease.yml @@ -0,0 +1,30 @@ +# This is a basic workflow to help you get started with Actions + +name: TagRelease + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + # Sequence of patterns matched against refs/tags + tags: + - '*-dev*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +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: ${{ github.ref }} + body: "" + draft: false + prerelease: true