Compare commits
76 Commits
2.1.0
...
fe2bf96b33
| Author | SHA1 | Date | |
|---|---|---|---|
| fe2bf96b33 | |||
|
8ccc69fe83
|
|||
| 5d5464426f | |||
|
d4be2547ec
|
|||
| 9fbf9b0864 | |||
|
2c5ab270a4
|
|||
| 0b83f7a573 | |||
|
a902c23821
|
|||
| e8a2000b4d | |||
|
c47976bd94
|
|||
| 3aba851dca | |||
|
7d8441c126
|
|||
| 6a1af4515f | |||
|
9995b84cc8
|
|||
| a9d0416576 | |||
|
fb89c5f501
|
|||
| 9a76654ee1 | |||
|
a5d6080b31
|
|||
| d9339214bc | |||
| e40e60023d | |||
| baa979d475 | |||
| 6d854c04a5 | |||
| 019c544d57 | |||
| 2d86be0c8f | |||
| 2ac89d8d35 | |||
|
1874cb6dba
|
|||
|
218797577e
|
|||
|
96e4670f49
|
|||
|
0fde0d1f8b
|
|||
|
f87ad542b2
|
|||
| 0dc48fa375 | |||
|
cda1c254b6
|
|||
| 5acc6f0ccd | |||
|
50b78e4d0d
|
|||
| 9f81114134 | |||
|
4a905f545a
|
|||
| 29f45afce2 | |||
|
dacdfd1e1c
|
|||
| aea953a0bb | |||
|
c20b9887f7
|
|||
| da41ff8939 | |||
|
45a51e301b
|
|||
| 1bd84c77e4 | |||
|
06f9450593
|
|||
| 2d9bfb5873 | |||
|
a90ad7e595
|
|||
| 464488595c | |||
|
49ccf8b417
|
|||
| fc58865824 | |||
|
fd549fd2ab
|
|||
| 59f3aa6992 | |||
|
89ef1e21bf
|
|||
| 20139360d0 | |||
|
7c1ac8432d
|
|||
| 56a624272c | |||
|
39e0a1db54
|
|||
| 5b535239c8 | |||
|
70e87b3732
|
|||
| 6488df5d54 | |||
|
0dc2ac4afc
|
|||
| 569b61f6a8 | |||
|
c602569df7
|
|||
| 24c53cbb53 | |||
|
6f4c6177a4
|
|||
| 826c53174e | |||
|
2775f0e240
|
|||
| e12174c170 | |||
|
5128a60269
|
|||
| 5e133c4fb9 | |||
|
9340faabcd
|
|||
| 9ee670346f | |||
|
ae236af1e4
|
|||
| cccb25f802 | |||
|
aaa37abcd4
|
|||
| 634506a3a5 | |||
| 5a62d0f571 |
@@ -12,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-js
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Login to Registry
|
||||
uses: docker/login-action@v3
|
||||
@@ -75,11 +75,11 @@ jobs:
|
||||
with:
|
||||
url: '${{ secrets.NTFY_URL }}'
|
||||
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||
title: 'Gitea Action'
|
||||
title: 'Release Success - Site Profile'
|
||||
priority: 3
|
||||
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||
tags: action,successfully,completed
|
||||
details: 'Site Profile build workflow has successfully completed!'
|
||||
details: 'Image for Site Profile has been released!'
|
||||
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||
|
||||
- name: ntfy Failed
|
||||
@@ -88,11 +88,11 @@ jobs:
|
||||
with:
|
||||
url: '${{ secrets.NTFY_URL }}'
|
||||
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||
title: 'Gitea Action'
|
||||
title: 'Release Failure - Site Profile'
|
||||
priority: 4
|
||||
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||
tags: action,failed
|
||||
details: 'Site Profile build workflow has failed!'
|
||||
details: 'Image for Site Profile has failed to be released.'
|
||||
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/site-profile/actions?workflow=release-image.yml", "clear": true}]'
|
||||
image: true
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
container: ghcr.io/renovatebot/renovate:42
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Renovate
|
||||
run: renovate
|
||||
|
||||
@@ -14,7 +14,7 @@ jobs:
|
||||
runs-on: ubuntu-js
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v5
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Set up pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: 24.11.0
|
||||
node-version: 24.11.1
|
||||
cache: pnpm
|
||||
|
||||
- name: Install Dependencies
|
||||
@@ -35,3 +35,18 @@ jobs:
|
||||
|
||||
- name: Build Project
|
||||
run: pnpm build
|
||||
|
||||
- name: ntfy Failed
|
||||
uses: niniyas/ntfy-action@master
|
||||
if: failure()
|
||||
with:
|
||||
url: '${{ secrets.NTFY_URL }}'
|
||||
topic: '${{ secrets.NTFY_TOPIC }}'
|
||||
title: 'Test Failure - Site Profile'
|
||||
priority: 4
|
||||
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
|
||||
tags: action,failed
|
||||
details: 'Tests have failed for building Site Profile'
|
||||
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
|
||||
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/site-profile/actions?workflow=test-build.yaml", "clear": true}]'
|
||||
image: true
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
ARG REGISTRY=docker.io
|
||||
FROM ${REGISTRY}/node:24.11.0-alpine3.22 AS base
|
||||
FROM ${REGISTRY}/node:24.11.1-alpine3.22 AS base
|
||||
|
||||
LABEL version="2.1.0"
|
||||
LABEL version="2.1.1"
|
||||
LABEL description="Astro based personal website"
|
||||
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
|
||||
+14
-14
@@ -27,30 +27,30 @@
|
||||
"lint:fix": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,astro}\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@astrojs/check": "^0.9.5",
|
||||
"@astrojs/mdx": "^4.3.10",
|
||||
"@astrojs/node": "^9.5.0",
|
||||
"@astrojs/check": "^0.9.6",
|
||||
"@astrojs/mdx": "^4.3.12",
|
||||
"@astrojs/node": "^9.5.1",
|
||||
"@astrojs/partytown": "^2.1.4",
|
||||
"@astrojs/react": "^4.4.2",
|
||||
"@astrojs/rss": "^4.0.13",
|
||||
"@astrojs/rss": "^4.0.14",
|
||||
"@astrojs/sitemap": "^3.6.0",
|
||||
"@directus/sdk": "^20.1.1",
|
||||
"@directus/sdk": "^20.2.0",
|
||||
"@giscus/react": "^3.1.0",
|
||||
"@iconify-json/mdi": "^1.2.3",
|
||||
"@iconify-json/pajamas": "^1.2.15",
|
||||
"@iconify-json/simple-icons": "^1.2.58",
|
||||
"@iconify-json/simple-icons": "^1.2.61",
|
||||
"@playform/compress": "^0.2.0",
|
||||
"@rehype-pretty/transformers": "^0.13.2",
|
||||
"@swup/astro": "1.7.0",
|
||||
"@tailwindcss/postcss": "^4.1.17",
|
||||
"@tailwindcss/vite": "^4.1.17",
|
||||
"@types/react": "^19.2.2",
|
||||
"@types/react": "^19.2.7",
|
||||
"@types/unist": "^3.0.3",
|
||||
"astro": "^5.15.5",
|
||||
"astro": "^5.16.3",
|
||||
"astro-compressor": "^1.2.0",
|
||||
"astro-icon": "^1.1.5",
|
||||
"mdast-util-to-string": "^4.0.0",
|
||||
"motion": "^12.23.24",
|
||||
"motion": "^12.23.25",
|
||||
"preline": "^3.2.3",
|
||||
"react": "^19.2.0",
|
||||
"react-dom": "^19.2.0",
|
||||
@@ -58,12 +58,12 @@
|
||||
"rehype-pretty-code": "^0.14.1",
|
||||
"sharp": "^0.34.5",
|
||||
"sharp-ico": "^0.1.5",
|
||||
"shiki": "^3.15.0",
|
||||
"shiki": "^3.17.1",
|
||||
"tailwindcss": "^4.1.17",
|
||||
"ultrahtml": "^1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint-react/eslint-plugin": "^2.3.4",
|
||||
"@eslint-react/eslint-plugin": "^2.3.9",
|
||||
"@tailwindcss/forms": "^0.5.10",
|
||||
"@tailwindcss/typography": "^0.5.19",
|
||||
"astro-icon": "^1.1.5",
|
||||
@@ -74,11 +74,11 @@
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-react-hooks": "^7.0.1",
|
||||
"eslint-plugin-react-refresh": "^0.4.24",
|
||||
"prettier": "^3.6.2",
|
||||
"prettier": "^3.7.3",
|
||||
"prettier-plugin-astro": "^0.14.1",
|
||||
"prettier-plugin-tailwindcss": "^0.7.1",
|
||||
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||
"timeago.js": "^4.0.2",
|
||||
"typescript": "5.9.3",
|
||||
"typescript-eslint": "8.46.3"
|
||||
"typescript-eslint": "8.48.1"
|
||||
}
|
||||
}
|
||||
|
||||
Generated
+844
-1030
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user