-
Notifications
You must be signed in to change notification settings - Fork 0
184 lines (161 loc) · 6.49 KB
/
ci.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build
# - run: mkdir -p build
# - name: Converts Markdown to HTML
# uses: idimetrix/markdown-to-html-cli@main
# with:
# output: build/index.html
# favicon: data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🏞️</text></svg>
- name: Create idoc config
run: |
cat > idoc.yml << EOF
site: "Contributors {{version}}"
menus:
Home: index.html
Apps:
url: https://idimetrix.github.io/#/app
target: __blank
Sponsor:
url: https://idimetrix.github.io/#/sponsor
target: __blank
footer: |
<a href="https://idimetrix.github.io/#/app" target="_blank">App</a> •
<a href="https://idimetrix.github.io/#/sponsor" target="_blank">Sponsor</a> •
<a href="https://idimetrix.github.io/changelog-generator" target="_blank">Changelog Generator</a> •
<a href="https://idimetrix.github.io/create-tag-action" target="_blank">Create Tag</a> •
<a href="https://idimetrix.github.io/github-action-read-file" target="_blank">Read File Content</a> •
<a href="https://idimetrix.github.io/generated-badges" target="_blank">Generated Badges</a>
<br />
Released under the MIT License. Copyright © {{idocYear}} Dmitrii Selikhov<br />
Generated by <a href="https://github.com/idimetrix/idoc" target="_blank">idoc</a> v{{idocVersion}}
EOF
- run: npm install idoc@1 -g
- run: idoc
- name: Generate Contributors Images
id: contributors
# uses: idimetrix/github-action-contributors@main
uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
filter-author: renovate\[bot\]
output: dist/CONTRIBUTORS.svg
avatarSize: 36
- name: Generate Contributors Images
id: contributor_name
uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
hideName: 'true'
avatarSize: 100
- name: Generate Contributors Images
id: contributor_table
uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
avatarSize: 100
- name: Modify GAMFC README.md
uses: idimetrix/github-action-modify-file-content@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
path: README.md
openDelimiter: '<!--GAMFC-->'
closeDelimiter: '<!--GAMFC-END-->'
body: |
${{steps.contributors.outputs.htmlList}}
- name: Modify GAMFC_TABEL_HIDE_NAME README.md
uses: idimetrix/github-action-modify-file-content@main
with:
path: README.md
openDelimiter: '<!--GAMFC_TABEL_HIDE_NAME-->'
closeDelimiter: '<!--GAMFC_TABEL_HIDE_NAME-END-->'
body: |
${{steps.contributor_name.outputs.htmlTable}}
- name: Modify GAMFC_TABEL README.md
uses: idimetrix/github-action-modify-file-content@main
with:
path: README.md
openDelimiter: '<!--GAMFC_TABEL-->'
closeDelimiter: '<!--GAMFC_TABEL-END-->'
body: |
${{steps.contributor_table.outputs.htmlTable}}
- name: Modify GAMFC_TABEL_BOTS README.md
uses: idimetrix/github-action-modify-file-content@main
with:
path: README.md
openDelimiter: '<!--GAMFC_TABEL_BOTS-->'
closeDelimiter: '<!--GAMFC_TABEL_BOTS-END-->'
body: |
${{steps.contributor_table.outputs.htmlTableBots}}
- name: Modify GAMFC_TABEL_COLLABORATORS README.md
uses: idimetrix/github-action-modify-file-content@main
with:
path: README.md
openDelimiter: '<!--GAMFC_TABEL_COLLABORATORS-->'
closeDelimiter: '<!--GAMFC_TABEL_COLLABORATORS-END-->'
body: |
${{steps.contributor_table.outputs.htmlCollaboratorsTable}}
- name: Create Tag
id: create_tag
uses: idimetrix/create-tag-action@main
with:
package-path: ./package.json
- name: get tag version
id: tag_version
uses: idimetrix/changelog-generator@main
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
commit_message: ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
publish_dir: ./dist
- name: Generate Changelog
id: changelog
uses: idimetrix/changelog-generator@main
with:
head-ref: ${{steps.create_tag.outputs.version}}
filter-author: (小弟调调™|Renovate Bot)
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'
- name: Create Release
uses: ncipollo/release-action@v1
if: steps.create_tag.outputs.successful
with:
allowUpdates: true
token: ${{ secrets.GITHUB_TOKEN }}
name: ${{ steps.create_tag.outputs.version }}
tag: ${{ steps.create_tag.outputs.version }}
body: |
Documentation ${{ steps.changelog.outputs.tag }}: https://raw.githack.com/idimetrix/github-action-contributors/${{ steps.changelog.outputs.gh-pages-short-hash }}/index.html
Comparing Changes: ${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
```yml
- run: mkdir -p build
- name: Generate Contributors Images
uses: idimetrix/github-action-contributors@main
with:
token: xxxxxxx
filter-author: renovate\[bot\]
output: build/CONTRIBUTORS.svg
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: xxxxxxx
publish_dir: ./build
```
<a href="https://github.com/idimetrix/github-action-contributors/graphs/contributors">
<img src="https://idimetrix.github.io/github-action-contributors/CONTRIBUTORS.svg" />
</a>