Make Actions UI prettier #97
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: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: 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: Compile Markdown | |
run: pnpm build | |
- 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 }} |