Skip to content

Deploy

Deploy #12

Workflow file for this run

name: Deploy
on:
workflow_dispatch
jobs:
deploy:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
width:

Check failure on line 11 in .github/workflows/deploy.yaml

View workflow run for this annotation

GitHub Actions / Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yaml (Line: 11, Col: 9): Unexpected value 'width'
submodules: true
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm build
- name: rsync deployments
uses: burnett01/rsync-deployments@5.2.1
with:
switches: -avzr --delete --exclude="src/,node_modules/,public/"
path: ./dist/*
remote_host: ${{ secrets.DEPLOY_HOST }}
remote_path: ${{ secrets.DEPLOY_PATH }}
remote_user: ${{ secrets.DEPLOY_USER }}
remote_key: ${{ secrets.DEPLOY_KEY }}