deploy #772
This file contains 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 | |
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@v4 | |
with: | |
version: 9 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
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 }} |