Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update main.yml #5

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Loading