Bump vite from 5.0.5 to 5.0.12 #8
Workflow file for this run
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: Preview | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
deployments: write | |
jobs: | |
preview: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify about new deployment | |
uses: bobheadxi/deployments@v1 | |
id: deployment | |
with: | |
step: start | |
token: ${{ secrets.GITHUB_TOKEN }} | |
ref: ${{ github.head_ref }} | |
env: preview-${{ github.event.number }} | |
- 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: Auth Google Cloud | |
uses: google-github-actions/auth@v1 | |
with: | |
credentials_json: ${{ secrets.GCLOUD_AUTH }} | |
- name: Install Google Cloud | |
uses: google-github-actions/setup-gcloud@v1 | |
- name: Deploy files | |
id: deploy | |
run: ./node_modules/.bin/ssdeploy preview $PR --verbose | |
env: | |
PR: ${{ github.event.number }} | |
GCLOUD_APP: ${{ secrets.GCLOUD_APP }} | |
GCLOUD_PROJECT: ${{ secrets.GCLOUD_PROJECT }} | |
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} | |
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} | |
- name: Update deployment status | |
uses: bobheadxi/deployments@v1 | |
if: always() | |
with: | |
step: finish | |
token: ${{ secrets.GITHUB_TOKEN }} | |
status: ${{ job.status }} | |
env: ${{ steps.deployment.outputs.env }} | |
env_url: ${{ steps.deploy.outputs.url }} | |
deployment_id: ${{ steps.deployment.outputs.deployment_id }} |