Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Use auth to authenticate calls #26

Use auth to authenticate calls

Use auth to authenticate calls #26

Workflow file for this run

name: deploy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: 'Auth'
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'
- name: Use Google Cloud CLI
uses: google-github-actions/setup-gcloud@v2
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build:prpl-server
- name: Deploy
run: gcloud app deploy server --project=${{ secrets.GCP_PROJECT_ID }}