Skip to content

Commit

Permalink
Merge pull request #9 from stripe/kabhi/configure-git
Browse files Browse the repository at this point in the history
Configure git for the copy workflow
  • Loading branch information
kabhi-stripe authored Nov 21, 2024
2 parents 362ed92 + 71a5538 commit bbb5523
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/copy-dirs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
git fetch origin +refs/heads/v1-uk-docs-release:refs/remotes/origin/v1-uk-docs-release
git checkout v1-uk-docs-release || git checkout --orphan v1-uk-docs-release
- name: Configure Git
run: |
git config user.name "kabhi-stripe"
git config user.email "[email protected]"
- name: Copy from Temp Directory to v1-uk-docs-release
run: |
cp -r temp-v1-uk-docs/* .
Expand Down Expand Up @@ -54,6 +59,11 @@ jobs:
git fetch origin +refs/heads/v1-eu-docs-release:refs/remotes/origin/v1-eu-docs-release
git checkout v1-eu-docs-release || git checkout --orphan v1-eu-docs-release
- name: Configure Git
run: |
git config user.name "kabhi-stripe"
git config user.email "[email protected]"
- name: Copy from Temp Directory to v1-eu-docs-release
run: |
cp -r temp-v1-eu-docs/* .
Expand Down

0 comments on commit bbb5523

Please sign in to comment.