Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
navenduraisamy authored Aug 20, 2023
1 parent 158e384 commit 760d3ce
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 760d3ce

Please sign in to comment.