Skip to content

Commit 092952b

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

File tree

2 files changed

+37
-50
lines changed

2 files changed

+37
-50
lines changed

.github/workflows/main.yml

+31-50
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,36 @@
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

63
on:
7-
push:
8-
branches: main
4+
push:
5+
branches: main
96

107
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
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
# Checkout
12+
- uses: actions/checkout@v4
13+
14+
# Run tests
15+
- name: Get project's node version
16+
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
17+
id: nvm
18+
19+
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
23+
cache: 'npm'
24+
25+
- run: npm ci
26+
- run: npm test
27+
28+
# Deploy to Vercel
29+
- name: Install Vercel CLI
30+
run: npm install --global vercel@latest
31+
32+
- name: Build Project Artifacts
33+
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} --yes
34+
35+
- name: Deploy Project Artifacts to Vercel
36+
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} --yes

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)