chore: bump node16 to node20 #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: jaywcjlove/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 | |
Sponsor: https://jaywcjlove.github.io/#/sponsor | |
footer: | | |
<a href="https://jaywcjlove.github.io/#/sponsor" target="_blank">Sponsor</a> • | |
<a href="https://jaywcjlove.github.io/changelog-generator" target="_blank">Changelog Generator</a> • | |
<a href="https://jaywcjlove.github.io/create-tag-action" target="_blank">Create Tag</a> • | |
<a href="https://jaywcjlove.github.io/github-action-read-file" target="_blank">Read File Content</a> • | |
<a href="https://jaywcjlove.github.io/generated-badges" target="_blank">Generated Badges</a> | |
<br /> | |
Released under the MIT License. Copyright © {{idocYear}} Kenny Wong<br /> | |
Generated by <a href="https://github.com/jaywcjlove/idoc" target="_blank">idoc</a> v{{idocVersion}} | |
EOF | |
- run: npm install [email protected] -g | |
- run: idoc | |
- name: Generate Contributors Images | |
id: contributors | |
# uses: jaywcjlove/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: jaywcjlove/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: jaywcjlove/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: jaywcjlove/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: jaywcjlove/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: jaywcjlove/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: jaywcjlove/create-tag-action@main | |
with: | |
package-path: ./package.json | |
- name: get tag version | |
id: tag_version | |
uses: jaywcjlove/changelog-generator@main | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
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: jaywcjlove/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: | |
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/jaywcjlove/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: jaywcjlove/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/jaywcjlove/github-action-contributors/graphs/contributors"> | |
<img src="https://jaywcjlove.github.io/github-action-contributors/CONTRIBUTORS.svg" /> | |
</a> |