Skip to content

Commit e5959d2

Browse files
committed
Add git config step
1 parent c2d7def commit e5959d2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release-docs.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
- name: Install Dependencies
2222
run: pip install -r requirements.txt
2323

24+
- name: Configure git
25+
run: |
26+
git config user.name "Seqera Commmunity Team"
27+
git config user.email "[email protected]"
28+
2429
- name: Build Docs Website
2530
run: mike deploy --alias-type copy --update-aliases ${{ github.event.release.tag_name }} latest
2631

@@ -29,5 +34,7 @@ jobs:
2934
git checkout gh-pages
3035
find ${{ github.event.release.tag_name }} -type f -exec sed -i 's|ref=master|ref=${{ github.event.release.tag_name }}|g' {} +
3136
find latest -type f -exec sed -i 's|ref=master|ref=${{ github.event.release.tag_name }}|g' {} +
32-
git commit -am "Pin GitHub Codespaces link versions"
37+
git add .
38+
git status
39+
git commit -m "[automated] Pin GitHub Codespaces link versions"
3340
git push

0 commit comments

Comments
 (0)