Skip to content

Update Node.js and actions for CI #86

Update Node.js and actions for CI

Update Node.js and actions for CI #86

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install build dependencies
run: pnpm install --frozen-lockfile --production
- name: Check files changes
id: hash
run: npx ssdeploy changed
env:
WEBSITE_URL: ${{ secrets.WEBSITE_URL }}
- name: Auth Google Cloud
if: "!steps.hash.outputs.noChanges"
uses: google-github-actions/auth@v1
with:
credentials_json: ${{ secrets.GCLOUD_AUTH }}
- name: Install Google Cloud
if: "!steps.hash.outputs.noChanges"
uses: google-github-actions/setup-gcloud@v1
- name: Deploy files
if: "!steps.hash.outputs.noChanges"
run: npx ssdeploy deploy --verbose
env:
GCLOUD_APP: ${{ secrets.GCLOUD_APP }}
GCLOUD_PROJECT: ${{ secrets.GCLOUD_PROJECT }}