This repository was archived by the owner on Jul 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
3 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -35,11 +35,11 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
npm version patch | ||
node -e "console.log(require('./package.json').version)" | ||
- name: Commit changes | ||
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }} | ||
run: | | ||
git add * | ||
git commit -am "Bump version to $NPM_NEWER_VERSION" | ||
- name: Push changes | ||
|
@@ -84,6 +84,7 @@ jobs: | |
- name: Commit changes | ||
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }} | ||
run: | | ||
git add * | ||
git commit -am "Bump version to $NPM_NEW_VERSION" | ||
- name: Push changes | ||
|
@@ -128,6 +129,7 @@ jobs: | |
- name: Commit changes | ||
if: ${{ env.NPM_VERSION >= env.NPM_NEW_VERSION }} | ||
run: | | ||
git add * | ||
git commit -am "Bump version to $NPM_NEW_VERSION" | ||
- name: Push changes | ||
|