This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to GCP | |
| on: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| GCP_PROJECT_ID: some-project-id | |
| GCP_REGION: europe-west1 # this has a different region as it's the closest where you can do domain mappings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM node:lts-slim AS frontend-builder | |
| WORKDIR /app | |
| ADD package.json /tmp/package.json | |
| RUN cd /tmp && npm install | |
| RUN cp -a /tmp/node_modules /app/ | |
| COPY . . |