Skip to content

Commit

Permalink
Changed ci: ignore tidy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpancake committed Jul 27, 2023
1 parent 2ea8dc3 commit 486aff2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:

- name: Generate website
run: |
ls -a
chmod +x ./danielpancake-website-gen-x86_64_linux
./danielpancake-website-gen-x86_64_linux rebuild -v
Expand All @@ -30,6 +29,8 @@ jobs:
sudo apt-get install tidy
- name: Tidy HTML
continue-on-error: true
# exit code 1 returned by tidy on warns upsets the workflow
run: |
cd _site
tidy -utf8 -imq -w 170 --tidy-mark no index.html 2> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion templates/project.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<div class="project">
<div class="toggle with-border project-banner" style="background: url(/images/projects/$banner$); background-position: $if(banner-position)$ $banner-position$ $else$ center $endif$;">
<div class="toggle with-border project-banner" style="background: url(./images/projects/$banner$); background-position: $if(banner-position)$ $banner-position$ $else$ center $endif$;">
<div class="project-shape">
<div></div>
<p>
Expand Down

0 comments on commit 486aff2

Please sign in to comment.