-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f4ca6c
commit e068d55
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|