Skip to content

Commit

Permalink
Update cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alichherawalla authored Aug 26, 2024
1 parent 4f4ca6c commit e068d55
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ jobs:
run: yarn
- name: Build
run: yarn webpack:prod && yarn pack
- name: Bump version
run: |
git config --global user.email "[email protected]"
git config --global user.name "Git"
npm version patch -m 'Bump up'
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}
- name: Publish
run: yarn publish
env:
Expand Down

0 comments on commit e068d55

Please sign in to comment.