Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: document git user config before trigger workflow #991

Merged
merged 2 commits into from
Jan 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: add git user config in trigger ci job
  • Loading branch information
dhayab committed Jan 9, 2023
commit 78076513066bc403597678b9173d76500fccf418
13 changes: 8 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ jobs:
- run:
name: Prepare release
command: |
git config --global user.email "karis612@gmail.com"
git config --global user.name "Eunjae Lee"
git config --global user.email "instantsearch-bot@algolia.com"
git config --global user.name "Algolia"
yarn run release --yes --no-browse
shipjs_trigger:
<<: *defaults
Expand All @@ -70,7 +70,10 @@ jobs:
- save_cache: *save_yarn_cache
- run:
name: Triggering Ship.js to Release
command: yarn shipjs trigger
command: |
git config --global user.email "[email protected]"
git config --global user.name "Algolia"
yarn shipjs trigger
gh_pages:
<<: *defaults
steps:
Expand All @@ -82,8 +85,8 @@ jobs:
- run:
name: Release website to gh-pages
command: |
git config --global user.email "karis612@gmail.com"
git config --global user.name "Eunjae Lee"
git config --global user.email "instantsearch-bot@algolia.com"
git config --global user.name "Algolia"
yarn workspace website deploy:gh
workflows:
version: 2
Expand Down