Skip to content

deploy

deploy #747

Workflow file for this run

name: Deploy
on:
repository_dispatch:
workflow_call:
permissions:
contents: read
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 --ignore-scripts --production
- name: Build static files
run: pnpm build
- name: Check files changes
id: hash
run: ./node_modules/.bin/ssdeploy changed
env:
WEBSITE_URL: logux.org
- name: Auth Google Cloud
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: ./node_modules/.bin/ssdeploy deploy --verbose
env:
GCLOUD_APP: ${{ secrets.GCLOUD_APP }}
GCLOUD_PROJECT: ${{ secrets.GCLOUD_PROJECT }}
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}