Skip to content

Commit da3f8da

Browse files
committed
fix resume download headache
1 parent a922379 commit da3f8da

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1189
-1005
lines changed

.github/workflows/hugo.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,15 @@ jobs:
5959
else
6060
echo "no package-lock.json; skipping npm install"
6161
fi
62-
# run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
62+
# run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
6363
- name: Cache Restore
6464
id: cache-restore
6565
uses: actions/cache/restore@v4
6666
with:
6767
path: |
6868
${{ runner.temp }}/hugo_cache
6969
key: hugo-${{ github.run_id }}
70-
restore-keys:
71-
hugo-
70+
restore-keys: hugo-
7271
- name: Build with Hugo
7372
run: |
7473
hugo \
@@ -98,4 +97,4 @@ jobs:
9897
steps:
9998
- name: Deploy to GitHub Pages
10099
id: deployment
101-
uses: actions/[email protected]
100+
uses: actions/[email protected]

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# molly-til gitignore
1+
# molly-carroll-dev .gitignore
22
.chglog/
33
.prettierignore
44
.prettierrc

archetypes/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
33
date: '{{ time.Now.Format "Mon Jan _2 15:04:05 MST 2006" }}'
44
draft: true
5-
category: 'info'
5+
category: "info"
66
tags: []
7-
summary: ''
7+
summary: ""
88
---

archetypes/default.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
33
date: '{{ time.Now.Format "Mon Jan _2 15:04:05 MST 2006" }}'
44
draft: true
5-
category: ''
5+
category: ""
66
tags: []
77
---

archetypes/posts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
33
date: '{{ time.Now.Format "Mon Jan _2 15:04:05 MST 2006" }}'
44
draft: true
5-
category: 'blog'
5+
category: "blog"
66
tags: []
7-
summary: ''
7+
summary: ""
88
---

archetypes/projects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
3-
date: '{{ .Date }}'
3+
date: "{{ .Date }}"
44
draft: true
5-
category: 'project'
5+
category: "project"
66
tags: []
7-
summary: ''
7+
summary: ""
88
---

0 commit comments

Comments
 (0)