summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-10-25 21:21:41 +0900
committerMatan Kushner <hello@matchai.me>2019-10-25 21:22:38 +0900
commitc398878c90ec644df5d4e5f0dcb4a9892c835f5f (patch)
tree8b9d9f1576860138780eed33b2f04691824bd1ab
parent20518653636ab563b824f1a7d6a80d7aa9d336d1 (diff)
ci: Add --global flag to git config commands
-rw-r--r--.github/workflows/workflow.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 61ee3c77b..c73d29457 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -174,9 +174,9 @@ jobs:
steps:
- uses: actions/checkout@v1
- run: |
- git config user.email "bot@starship.rs"
- git config user.name "Starship Bot"
-
+ git config --global user.email "bot@starship.rs"
+ git config --global user.name "Starship Bot"
+ - run: |
cd $(brew --repo homebrew/core)
git fetch origin
sudo git reset --hard origin/master