Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
anuradha9712 committed Oct 25, 2024
1 parent c140d52 commit e59ae4c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
if: steps.is_release_commit.outputs.result == 1
run: git checkout -b preparing-module-for-npm-publish && git config --global user.email "release-bot@innovaccer.com" && git config --global user.name "release-bot"

- name: setup git
if: steps.is_release_commit.outputs.result == 1
run: git status

- name: bump module version
if: steps.is_release_commit.outputs.result == 1
run: npm version $(git log -1 --pretty=format:%s) -m "Released %s"
Expand All @@ -37,7 +41,7 @@ jobs:
if: steps.is_release_commit.outputs.result == 1
run: git push https://${{ secrets.GH_TOKEN }}@github.com/$GITHUB_REPOSITORY.git HEAD:master --follow-tags

- name: gnerate .npmrc
- name: generate .npmrc
if: steps.is_release_commit.outputs.result == 1
run: cp .npmrc.stub .npmrc

Expand Down

0 comments on commit e59ae4c

Please sign in to comment.