-
Notifications
You must be signed in to change notification settings - Fork 51
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
46f4919
commit 8a5adff
Showing
5 changed files
with
10 additions
and
7 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 |
---|---|---|
|
@@ -37,7 +37,10 @@ jobs: | |
- save_cache: *save_yarn_cache | ||
- run: | ||
name: Try to Release | ||
command: yarn release:trigger | ||
command: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "shipjs" | ||
yarn release:trigger | ||
workflows: | ||
version: 2 | ||
ci: | ||
|
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
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
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 |
---|---|---|
|
@@ -15,10 +15,6 @@ module.exports = { | |
`export const version = '${version}';\n` | ||
); | ||
}, | ||
beforeCommitChanges: ({ exec }) => { | ||
exec('git config user.email "[email protected]"'); | ||
exec('git config user.name "shipjs"'); | ||
}, | ||
buildCommand() { | ||
// We don't build the project before releasing. | ||
return 'echo "No build needed."'; | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
export const version = '0.1.0-beta.2'; | ||
export const version = '0.1.0-beta.3'; |