From 8f7553b787b058d1d50a9ee663da44fbac9b0fed Mon Sep 17 00:00:00 2001 From: Murali Krishna Komatireddy <43192592+SpideyPool192@users.noreply.github.com> Date: Wed, 12 Jan 2022 13:33:52 +0530 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 0000000..638a293 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Release + +on: + pull_request: + types: merged + + workflow_dispatch: + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Tag + uses: K-Phoen/semver-release-action@master + with: + release_branch: main + env: + GITHUB_TOKEN: ${{ secrets.TENDERBOT_GIT_TOKEN }}