From edae757eaa9e7f4f9928cc1646c91f31260599d3 Mon Sep 17 00:00:00 2001 From: Michael Schilling Date: Fri, 14 Feb 2020 15:53:43 +0100 Subject: [PATCH] Update release yml --- .github/workflows/release.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69f0e703..c146121f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,19 @@ on: - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: - release-on-push: - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + release: steps: - - uses: rymndhng/release-on-push-action@master + - name: Create GitHub release + uses: Roang-zero1/github-create-release-action@master with: - strategy: patch \ No newline at end of file + version_regex: ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+ + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # release-on-push: + # runs-on: ubuntu-latest + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # steps: + # - uses: rymndhng/release-on-push-action@master + # with: + # strategy: patch \ No newline at end of file