From 760d3ce8eae10442083849756ad58893edf28251 Mon Sep 17 00:00:00 2001 From: Navenkumar D <56171440+navenduraisamy@users.noreply.github.com> Date: Sun, 20 Aug 2023 22:27:45 +0530 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ee30cc5..af1b825 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,12 @@ on: - main jobs: - build-library: + build_library: name: build library runs-on: ubuntu-latest strategy: matrix: - version: [16.x, 18.x] + version: [14.x] steps: - name: checkout code uses: actions/checkout@v3 @@ -32,4 +32,22 @@ jobs: - name: run tests run: ng test we-select --watch=false --browsers=ChromeHeadless + + create_tag: + needs: build_library + runs-on: ubuntu-latest + steps: + - name: git configuration + run: | + git config --global user.name "navenkumar" + git config --global user.email "naven.duraisamy5859@gmail.com" + + - name: update version + run: npm version ${{ github.event.inputs.version_bump }} + + - name: Push changes to repository + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git push origin && git push --tags