Skip to content

Commit e730b3d

Browse files
authored
Merge pull request #91 from kc3hack/main
リリースするぞ!
2 parents a24b620 + fe6496b commit e730b3d

Some content is hidden

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

71 files changed

+13351
-5179
lines changed

.github/workflows/deploy-production.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
uses: tsickert/discord-webhook@v6.0.0
3131
with:
3232
webhook-url: ${{ secrets.RELEASE_NOTIFY_WEBHOOK }}
33-
content: ":tada:リリースされました!\nURL: https://akane.yaken.org/"
33+
content: "@here\n# :tada:リリースされました!\nURL: https://akane.yaken.org/"

.github/workflows/push-and-deploy.yaml

+14-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ on:
55
branches:
66
- main
77
workflow_dispatch:
8+
pull_request:
9+
types:
10+
- opened
11+
- synchronize
12+
- reopened
13+
paths:
14+
- "packages/akane-next/**"
15+
- ".github/workflows/push-and-deploy.yaml"
16+
- "docker/akane-next/**"
17+
- "compose.yaml"
818

919
jobs:
1020
next-build-and-push:
@@ -45,13 +55,13 @@ jobs:
4555
- name: Build and push
4656
uses: docker/build-push-action@v6
4757
with:
48-
context: ./packages/akane-next
58+
context: .
4959
file: ./docker/akane-next/Dockerfile
5060
target: production
5161
platforms: linux/amd64
5262
tags: ${{ steps.meta.outputs.tags }}
5363
labels: ${{ steps.meta.outputs.labels }}
54-
push: true
64+
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
5565
provenance: false
5666
build-args: |
5767
DATABASE_URL=mysql://root@db:3306/akane
@@ -102,13 +112,14 @@ jobs:
102112
platforms: linux/amd64
103113
tags: ${{ steps.meta.outputs.tags }}
104114
labels: ${{ steps.meta.outputs.labels }}
105-
push: true
115+
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
106116
provenance: false
107117
- name: Image digest
108118
run: echo ${{ steps.docker_build.outputs.digest }}
109119
deploy:
110120
name: Auto Deploy as Staging Environment
111121
needs: [next-build-and-push, nginx-build-and-push]
122+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
112123
runs-on: ubuntu-latest
113124
steps:
114125
- name: Setup Tailscale

compose.yaml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
services:
22
akane-next:
33
build:
4-
context: packages/akane-next
5-
dockerfile: ../../docker/akane-next/Dockerfile
4+
context: .
5+
dockerfile: ./docker/akane-next/Dockerfile
66
target: development
77
args:
8-
NODE_ENV: development
98
DATABASE_URL: "mysql://root@db:3306/akane"
10-
MAPBOX_MAP_STYLE: ""
11-
MAPBOX_ACCESS_TOKEN: ""
9+
MAPBOX_MAP_STYLE: "mapbox://styles/nenrin/cm77whskd00sl01reh909h23j"
10+
MAPBOX_ACCESS_TOKEN: "pk.eyJ1IjoibmVucmluIiwiYSI6ImNtNzV1d3hoNTBpanoya3B2d3N0cGNtaTAifQ.8f7ecF34J0Zj0gdDrmaaVA"
1211
init: true
13-
command: ["npm", "run", "dev"]
1412
ports:
1513
- "3800:3000"
1614
- "5555:5555" # for prisma studio

docker/akane-next/Dockerfile

+14-10
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ ENV NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN=${MAPBOX_ACCESS_TOKEN}
1717
USER node
1818
WORKDIR /app
1919

20+
RUN mkdir -p /app/packages/akane-next
2021
COPY --chown=node:node package.json package-lock.json ./
22+
COPY --chown=node:node packages/akane-next/package.json ./packages/akane-next/
2123

22-
RUN npm ci
24+
RUN npm install
2325

2426
#
2527
# 開発環境向け
@@ -29,8 +31,9 @@ FROM base AS development
2931
USER node
3032
WORKDIR /app
3133

32-
COPY --chown=node:node . .
34+
COPY --chown=node:node ./packages/akane-next ./packages/akane-next
3335
COPY --from=base --chown=node:node /app/node_modules ./node_modules
36+
WORKDIR /app/packages/akane-next
3437

3538
RUN npm run prisma:generate
3639

@@ -44,8 +47,9 @@ FROM base AS build
4447
RUN mkdir -p /app/.next
4548

4649
WORKDIR /app
47-
COPY --chown=node:node . .
50+
COPY --chown=node:node ./packages/akane-next ./packages/akane-next
4851
COPY --from=base --chown=node:node /app/node_modules ./node_modules
52+
WORKDIR /app/packages/akane-next
4953

5054
RUN npm run build
5155

@@ -55,12 +59,12 @@ RUN npm run build
5559
FROM base AS production
5660

5761
USER node
58-
WORKDIR /app
62+
WORKDIR /app/packages/akane-next
5963

60-
COPY --chown=node:node --from=build /app/.next ./.next
61-
COPY --chown=node:node --from=build /app/public ./public
62-
COPY --chown=node:node --from=build /app/next.config.ts ./next.config.ts
63-
COPY --chown=node:node --from=build /app/package.json ./package.json
64-
COPY --chown=node:node --from=build /app/node_modules ./node_modules
64+
COPY --chown=node:node --from=build /app/packages/akane-next/.next ./.next
65+
COPY --chown=node:node --from=build /app/packages/akane-next/public ./public
66+
COPY --chown=node:node --from=build /app/packages/akane-next/next.config.ts ./next.config.ts
67+
COPY --chown=node:node --from=build /app/packages/akane-next/package.json ./package.json
68+
COPY --chown=node:node --from=build /app/node_modules ../../node_modules
6569

66-
CMD ["npm", "start"]
70+
CMD ["npm", "start"]

docker/nginx/conf.d/admin.local.akane.yaken.org.conf

+4
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@ server {
1515
location /_next {
1616
proxy_pass http://akane-next:3000;
1717
}
18+
19+
location /admin {
20+
proxy_pass http://akane-next:3000;
21+
}
1822
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen 81;
3-
server_name admin-st-akane.yaken.org;
3+
server_name admin-akane.yaken.org;
44

55
location / {
66
proxy_pass http://akane-next:3000/admin;
@@ -9,5 +9,9 @@ server {
99
location /_next {
1010
proxy_pass http://akane-next:3000;
1111
}
12+
13+
location /admin {
14+
proxy_pass http://akane-next:3000;
15+
}
1216

1317
}

docker/production/nginx/conf.d/st-akane.yaken.org.conf docker/production/nginx/conf.d/akane.yaken.org.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen 80;
3-
server_name st-akane.yaken.org;
3+
server_name akane.yaken.org;
44

55
location / {
66
proxy_pass http://akane-next:3000;

0 commit comments

Comments
 (0)