-
-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (65 loc) · 1.92 KB
/
Init.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Init
permissions:
contents: write
actions: write
on:
push:
branches:
- main
jobs:
init:
if: github.repository != 'gendloop/template-GitbookProject'
runs-on: ubuntu-latest
steps:
- name: checkout-repo
uses: actions/checkout@v3
- name: get-repo-name
id: get-repo-name
shell: bash
run: |
repo_name=${GITHUB_REPOSITORY#*/}
echo "reponame=$repo_name" >> $GITHUB_OUTPUT
- name: replace-README
uses: gendloop/replace-str@v1.0.1
with:
token: ${{ github.token }}
path-to-replace: 'docs/README.md'
replace-to-path: 'README.md'
str-to-replace: 'REPO'
replace-to-str: ${{ steps.get-repo-name.outputs.reponame }}
- name: replace-include
uses: gendloop/replace-str@v1.0.1
with:
token: ${{ github.token }}
path-to-replace: 'book.json'
replace-to-path: 'book.json'
str-to-replace: 'template-GitbookProject'
replace-to-str: ${{ steps.get-repo-name.outputs.reponame }}
- name: clear-intro
working-directory: ${{ github.workspace }}
shell: bash
run: |
echo "" > INTRO.md
- name: remove-useless
working-directory: ${{ github.workspace }}
shell: pwsh
run: |
Remove-Item .github\workflows\Init.yml
Remove-Item docs\README.md
- name: remove-sync-log
working-directory: ${{ github.workspace }}
shell: pwsh
run: |
$file = "sync_log.md"
if(Test-Path $file) {
Remove-Item $file -Force
Write-Host "File $file deleted successfully."
}
else {
Write-Host "File $file does not exist."
}
- name: git-push
uses: gendloop/git-push@v1.0.0
with:
token: ${{ github.token }}
commit: "chore: init project"