Skip to content

Commit

Permalink
add .github/favicon.ico
Browse files Browse the repository at this point in the history
* Add favicon.ico to pages root
* add favicon.ico to pages /coverage
* add favicon.ico to pages /docs
  • Loading branch information
JackNoordhuis committed Sep 13, 2023
1 parent 9531a13 commit cee8b3f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Binary file added .github/favicon.ico
Binary file not shown.
10 changes: 10 additions & 0 deletions .github/workflows/pages-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@ jobs:
with:
sparse-checkout: |
.github/pages/_config.yml
.github/favicon.ico
README.md
sparse-checkout-cone-mode: false

- name: Move pages config
run: |
mv .github/pages/_config.yml ./_config.yml
mv .github/favicon.ico ./favicon.ico
rm -rf ./.github
- name: Setup Pages
Expand Down Expand Up @@ -159,11 +161,19 @@ jobs:
name: pages-coverage-html
path: ./coverage

- name: Copy favicon to /coverage
run: |
cp ./favicon.ico ./coverage/favicon.ico
- uses: actions/download-artifact@v3
with:
name: pages-docs-html
path: ./docs

- name: Copy favicon to /docs
run: |
cp ./favicon.ico ./docs/favicon.ico
- name: Fix permissions
run: |
chmod -c -R +rX "./" | while read line; do
Expand Down

0 comments on commit cee8b3f

Please sign in to comment.