Skip to content

Commit 650fe64

Browse files
committed
feat: switching from GCP to Vercel
* Cloud run urls are not great
1 parent d5ca7b1 commit 650fe64

File tree

5 files changed

+83
-50
lines changed

5 files changed

+83
-50
lines changed

.github/workflows/main.yml

+35-50
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,40 @@
1-
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3-
41
name: Resume NextJs CI
52

3+
env:
4+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
5+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
6+
67
on:
7-
push:
8-
branches: main
8+
push:
9+
branches: main
910

1011
jobs:
11-
build:
12-
runs-on: ubuntu-latest
13-
steps:
14-
# Checkout
15-
- uses: actions/checkout@v4
16-
17-
# Run tests
18-
- name: Get project's node version
19-
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
20-
id: nvm
21-
22-
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
23-
uses: actions/setup-node@v4
24-
with:
25-
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
26-
cache: 'npm'
27-
28-
- run: npm ci
29-
- run: npm test
30-
31-
# Deploy to GCP
32-
- name: Google Cloud Auth
33-
uses: 'google-github-actions/auth@v2'
34-
with:
35-
credentials_json: '${{ secrets.GCP_SA_KEY }}'
36-
project_id: ${{ secrets.GCP_PROJECT_ID }}
37-
38-
- name: Set up Cloud SDK
39-
uses: 'google-github-actions/setup-gcloud@v2'
40-
41-
- name: Configure Docker
42-
run: gcloud auth configure-docker gcr.io
43-
44-
- name: Build and Push Docker Image
45-
run: |
46-
docker build -t gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest .
47-
docker push gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest
48-
49-
- name: Deploy to Cloud Run
50-
run: |
51-
gcloud run deploy ${{ secrets.SERVICE_NAME }} \
52-
--image gcr.io/${{ secrets.GCP_PROJECT_ID }}/${{ secrets.DOCKER_IMAGE_NAME }}:latest \
53-
--platform managed \
54-
--region ${{ secrets.GCP_REGION }} \
55-
--allow-unauthenticated
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
# Checkout
16+
- uses: actions/checkout@v4
17+
18+
# Run tests
19+
- name: Get project's node version
20+
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
21+
id: nvm
22+
23+
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
24+
uses: actions/setup-node@v4
25+
with:
26+
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
27+
cache: 'npm'
28+
29+
- run: npm ci
30+
- run: npm test
31+
32+
# Deploy to Vercel
33+
- name: Install Vercel CLI
34+
run: npm install --global vercel@latest
35+
36+
- name: Build Project Artifacts
37+
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} --yes
38+
39+
- name: Deploy Project Artifacts to Vercel
40+
run: vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes

package-lock.json

+39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"node": ">=20.15.0"
2121
},
2222
"dependencies": {
23+
"@vercel/analytics": "^1.5.0",
2324
"clsx": "^2.1.1",
2425
"next": "15.2.4",
2526
"next-intl": "^3.26.5",

src/app/[locale]/layout.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { Analytics } from '@vercel/analytics/react';
12
import type { Metadata } from 'next';
23
import { Noto_Sans_JP } from 'next/font/google';
34
import {
@@ -73,6 +74,7 @@ export default function RootLayout(props: {
7374
<main className='h-full flex-auto px-5'>{children}</main>
7475
</NextIntlClientProvider>
7576
</ThemeProvider>
77+
<Analytics />
7678
</body>
7779
</html>
7880
);

vercel.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"buildCommand": "next build",
4+
"framework": "nextjs",
5+
"regions": ["kix1"]
6+
}

0 commit comments

Comments
 (0)