mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-05-24 22:39:10 +00:00
Compare commits
56 Commits
6f1990e213
...
renovate/r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c8942ea67d | ||
|
|
4577a77af4 | ||
|
|
e2a5dc673b | ||
|
|
846cda0c0b | ||
|
|
d90cd6c247 | ||
|
|
090727bdae | ||
|
|
02b24cb624 | ||
|
|
9bbbfd67de | ||
|
|
f85308f9d6 | ||
|
|
3a7333bbbb | ||
|
|
83ccfca7fe | ||
|
|
1b4b8b07c0 | ||
|
|
a4b0bd1d4a | ||
|
|
4ee2932a63 | ||
|
|
588f5bbe2f | ||
|
|
c374e34fa0 | ||
|
|
fb88d6a2e8 | ||
|
|
0782feabf5 | ||
|
|
0b4f4d3212 | ||
|
|
b1a49cddcd | ||
|
|
4861a3750a | ||
|
|
e24dc6d66a | ||
|
|
e85716a007 | ||
|
|
7328ed735f | ||
|
|
ec8c4d6fe4 | ||
|
|
e64589e4da | ||
|
|
50ba1e7e1b | ||
|
|
c3008b728c | ||
|
|
f8f95bff78 | ||
|
|
6a5f8cd832 | ||
|
|
88d4a0260f | ||
|
|
276909d990 | ||
|
|
32317e298d | ||
|
|
1177e0fee2 | ||
|
|
e4be045380 | ||
|
|
e0b930104c | ||
|
|
1beae770f1 | ||
|
|
bb5a1b4ab6 | ||
|
|
ea373f2260 | ||
|
|
167a37175c | ||
|
|
035236c996 | ||
|
|
95dd25868b | ||
|
|
354cb5da34 | ||
|
|
851c90f7bb | ||
|
|
5c565f0731 | ||
|
|
6abc035e97 | ||
|
|
59b79ead56 | ||
|
|
64c3550145 | ||
|
|
41954c5cf0 | ||
|
|
9ff0172d60 | ||
|
|
54d8b2875a | ||
|
|
684ff434d4 | ||
|
|
98411c6af9 | ||
|
|
141414b40a | ||
|
|
08d8eb2afc | ||
|
|
15172d957a |
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v4
|
||||||
- name: Login to GitHub Container Registry
|
- name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v4
|
uses: docker/login-action@v4
|
||||||
with:
|
with:
|
||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
- name: Build and push image
|
- name: Build and push image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v7
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
|
|||||||
6
.github/workflows/pr.yml
vendored
6
.github/workflows/pr.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
if: github.actor == 'renovate[bot]'
|
if: github.actor == 'renovate[bot]'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
- uses: pnpm/action-setup@v4
|
- uses: pnpm/action-setup@v6
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
- uses: actions/setup-node@v6
|
- uses: actions/setup-node@v6
|
||||||
@@ -23,7 +23,9 @@ jobs:
|
|||||||
cache: pnpm
|
cache: pnpm
|
||||||
- name: Build checking
|
- name: Build checking
|
||||||
run: |
|
run: |
|
||||||
pnpm install --frozen-lockfile
|
pnpm install --frozen-lockfile --ignore-scripts
|
||||||
|
pnpm approve-builds sharp
|
||||||
|
pnpm rebuild sharp
|
||||||
pnpm build
|
pnpm build
|
||||||
- name: Enable auto-merge for Renovate PRs
|
- name: Enable auto-merge for Renovate PRs
|
||||||
run: gh pr merge --auto --merge "$PR_URL"
|
run: gh pr merge --auto --merge "$PR_URL"
|
||||||
|
|||||||
@@ -6,7 +6,9 @@ ENV OUTPUT=standalone
|
|||||||
RUN corepack enable
|
RUN corepack enable
|
||||||
|
|
||||||
COPY pnpm-lock.yaml package.json .
|
COPY pnpm-lock.yaml package.json .
|
||||||
RUN pnpm install --frozen-lockfile
|
RUN pnpm install --frozen-lockfile --ignore-scripts
|
||||||
|
RUN pnpm approve-builds sharp
|
||||||
|
RUN pnpm rebuild sharp
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN pnpm build
|
RUN pnpm build
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
"@next/mdx": "^16.0.0",
|
"@next/mdx": "^16.0.0",
|
||||||
"@types/mdx": "^2.0.13",
|
"@types/mdx": "^2.0.13",
|
||||||
"iconoir-react": "^7.11.0",
|
"iconoir-react": "^7.11.0",
|
||||||
"next": "16.1.6",
|
"next": "16.2.6",
|
||||||
"react": "^19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "^19.0.0"
|
"react-dom": "^19.0.0"
|
||||||
},
|
},
|
||||||
@@ -26,8 +26,8 @@
|
|||||||
"@types/react": "^19",
|
"@types/react": "^19",
|
||||||
"@types/react-dom": "^19",
|
"@types/react-dom": "^19",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"prettier-plugin-tailwindcss": "^0.7.0",
|
"prettier-plugin-tailwindcss": "^0.8.0",
|
||||||
"tailwindcss": "^4",
|
"tailwindcss": "^4",
|
||||||
"typescript": "^5"
|
"typescript": "^6.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
888
pnpm-lock.yaml
generated
888
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
2
pnpm-workspace.yaml
Normal file
2
pnpm-workspace.yaml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
allowBuilds:
|
||||||
|
sharp: true
|
||||||
Reference in New Issue
Block a user