Skip to content

Commit

Permalink
Update workflow paths
Browse files Browse the repository at this point in the history
  • Loading branch information
j6k4m8 authored Mar 22, 2024
1 parent 99e81b3 commit 8ad182a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def to_link_if_markdown(cell_text: str) -> str:
cell_text = re.sub(r'\[(.*?)\]\((.*?)\)', r'<a href="\2">\1</a>', cell_text)
return cell_text

text = open("../../README.md", "r").readlines()
text = open("/home/runner/work/awesome-computational-primatology/awesome-computational-primatology/README.md", "r").readlines()
table = []
# | Year | Paper | Topic | Animal | Model? | Data? | Image/Video Count |
for line in text:
Expand All @@ -22,7 +22,7 @@ def to_link_if_markdown(cell_text: str) -> str:


# %%
with open("index.html", "w") as f:
with open("/home/runner/work/awesome-computational-primatology/awesome-computational-primatology/index.html", "w") as f:
f.write("""<html>
<head>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
Expand Down

0 comments on commit 8ad182a

Please sign in to comment.