This commit is contained in:
tuna2134
2025-07-27 23:01:06 +09:00
3 changed files with 303 additions and 259 deletions

31
.github/workflows/docker.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
name: Push to github container register
on:
push:
branches: [master]
jobs:
push-docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}

View File

@@ -15,7 +15,7 @@
"@next/mdx": "^15.3.1",
"@types/mdx": "^2.0.13",
"iconoir-react": "^7.11.0",
"next": "15.3.4",
"next": "15.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},

529
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff