Skip to content

Commit

Permalink
Merge branch 'main' into feat/specific_page_title_for_each_project
Browse files Browse the repository at this point in the history
  • Loading branch information
tbouffard committed Aug 19, 2024
2 parents 93426bc + 18ab3a0 commit a9f4764
Show file tree
Hide file tree
Showing 4 changed files with 655 additions and 200 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-typescript-projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
with:
script: |
const {PROJECTS_PATH} = process.env;
const projectsListing = PROJECTS_PATH.split(' ').filter(name => name.trim() !== '').map(name => `<li><a href="${name}/index.html" target="_blank">${name}</a></li>`).join('\n');
const projectsListing = PROJECTS_PATH.split(' ').filter(name => name.trim() !== '').map(name => `<li><a href="${name}/" target="_blank">${name}</a></li>`).join('\n');
let htmlContent = `<!DOCTYPE html>
<html lang="en">
Expand Down
Loading

0 comments on commit a9f4764

Please sign in to comment.