Skip to content

Commit 01e0a37

Browse files
committed
Rename README.md to HOME.md in copy-readme-to-wiki.yml workflow
1 parent e488e29 commit 01e0a37

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/copy-readme-to-wiki.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v3
18+
- name: Rename README.md to HOME.md
19+
run: |
20+
if [ -f README.md ]; then
21+
mv README.md HOME.md
22+
fi
1823
- uses: Andrew-Chen-Wang/github-wiki-action@v4
1924
with:
2025
token: ${{ secrets.GH_TOKEN }}
21-
preprocess: true
2226
path: .

0 commit comments

Comments
 (0)