File tree Expand file tree Collapse file tree 2 files changed +36
-3
lines changed Expand file tree Collapse file tree 2 files changed +36
-3
lines changed Original file line number Diff line number Diff line change 16
16
runs-on : ubuntu-latest
17
17
permissions :
18
18
contents : write
19
+
19
20
steps :
20
21
- uses : actions/checkout@v4
21
22
44
45
github_token : ${{ secrets.GITHUB_TOKEN }}
45
46
publish_dir : ./book/book
46
47
destination_dir : ./${{ env.OUTDIR }}
48
+
49
+ generate-con :
50
+ name : Generate CONTRIBUTORS.svg
51
+ runs-on : ubuntu-latest
52
+ permissions :
53
+ contents : write
54
+
55
+ steps :
56
+ - uses : actions/checkout@v4
57
+
58
+ - name : Pull gh-pages
59
+ run : |
60
+ git config --global user.name 'Adam Perkowski'
61
+ git config --global user.email '[email protected] '
62
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/adamperkowski/highlightos
63
+ git checkout --orphan gh-pages
64
+ git rm -rf .
65
+ git pull origin gh-pages
66
+ git checkout gh-pages
67
+
68
+ - name : Generate Contributors Images
69
+ uses : jaywcjlove/github-action-contributors@main
70
+ with :
71
+ filter-author : (renovate\[bot\]|renovate-bot|dependabot\[bot\])
72
+ output : CONTRIBUTORS.svg
73
+ avatarSize : 42
74
+
75
+ - name : Push the svg
76
+ run : |
77
+ git add CONTRIBUTORS.svg
78
+ git commit -am "Update CONTRIBUTORS.svg"
79
+ git push --set-upstream origin gh-pages
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ x86_64 OS (kernel) made completely from scratch in Assembly & Rust
9
9
[ ![ README in Italian] ( https://img.shields.io/badge/IT-%F0%9F%87%AE%F0%9F%87%B9-blue?color=%23ffb454&labelColor=%230a0c0c )] ( https://github.com/adamperkowski/highlightos/blob/main/README-it.md )
10
10
[ ![ Documentation] ( https://img.shields.io/badge/Documentation-%F0%9F%8C%84-blue?color=%23ffb454&labelColor=%230a0c0c )] ( https://os.adamperkowski.dev )
11
11
12
- [ ![ GitHub Release] ( https://img.shields.io/github/v/release/adamperkowski/highlightos?label=Latest%20Released%20Version&color=%23ffcc4d &labelColor=%23000000 )] ( https://github.com/adamperkowski/highlightos/releases )
13
- [ ![ GitHub License] ( https://img.shields.io/github/license/adamperkowski/highlightos?label=License&color=%23ffcc4d &labelColor=%23000000 )] ( https://github.com/adamperkowski/highlightos/blob/main/LICENSE ) ![ GitHub repo size] ( https://img.shields.io/github/repo-size/adamperkowski/highlightos?label=Repo%20Size&color=%23ffcc4d &labelColor=%23000000 )
14
- [ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/adamperkowski/highlightos/asm.yml?branch=main&label=ASM%20Build&color=%23ffcc4d &labelColor=%23000000 )] ( https://github.com/adamperkowski/highlightos/actions ) [ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/adamperkowski/highlightos/rust.yml?branch=main&label=HLKernel%20Build&color=%23ffcc4d &labelColor=%23000000 )] ( https://github.com/adamperkowski/highlightos/actions )
12
+ [ ![ GitHub Release] ( https://img.shields.io/github/v/release/adamperkowski/highlightos?label=Latest%20Released%20Version&color=%23ffb454 &labelColor=%230a0c0c )] ( https://github.com/adamperkowski/highlightos/releases )
13
+ [ ![ GitHub License] ( https://img.shields.io/github/license/adamperkowski/highlightos?label=License&color=%23ffb454 &labelColor=%230a0c0c )] ( https://github.com/adamperkowski/highlightos/blob/main/LICENSE ) ![ GitHub repo size] ( https://img.shields.io/github/repo-size/adamperkowski/highlightos?label=Repo%20Size&color=%23ffb454 &labelColor=%230a0c0c )
14
+ [ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/adamperkowski/highlightos/asm.yml?branch=main&label=ASM%20Build&color=%23ffb454 &labelColor=%230a0c0c )] ( https://github.com/adamperkowski/highlightos/actions ) [ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/adamperkowski/highlightos/rust.yml?branch=main&label=HLKernel%20Build&color=%23ffb454 &labelColor=%230a0c0c )] ( https://github.com/adamperkowski/highlightos/actions )
15
15
16
16
## Table of contents
17
17
- [ Build from source on Linux] ( #build-from-source-on-linux )
You can’t perform that action at this time.
0 commit comments