Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Noi more docker build testing

Aria 4053fbad 68f698ae

+3 -3
+2 -2
.github/workflows/docker-image.yml
··· 2 2 3 3 on: 4 4 push: 5 - branches: [ "main" ] 5 + branches: [ ] 6 6 # Publish semver tags as releases. 7 7 tags: [ 'v*.*.*' ] 8 8 pull_request: 9 - branches: [ "main" ] 9 + branches: [ ] 10 10 11 11 12 12 env:
+1 -1
remark-modified-time.mjs
··· 3 3 export function remarkModifiedTime() { 4 4 return (tree, file) => { 5 5 const filepath = file.history[0]; 6 - const result = typeof import.meta.env.PUBLIC_COMMIT === "undefined" ? "Unavailable" : execSync(`git log -1 --pretty="format:%cI" "${filepath}"`); 6 + const result = execSync(`git log -1 --pretty="format:%cI" "${filepath}"`); 7 7 file.data.astro.frontmatter.lastModified = result.toString(); 8 8 }; 9 9 }