name: Build and deploy to dev server on: push: workflow_dispatch: permissions: contents: write env: npm_config_registry: ${{ vars.REGISTRY_URL }} jobs: Deploy: runs-on: ubuntu-20.04 steps: - name: Checkout code uses: actions/checkout@v3 - name: Setup pnpm uses: pnpm/action-setup@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 18.20.3 registry-url: ${{ vars.REGISTRY_URL }} cache: 'pnpm' - name: Install deps run: pnpm install - name: Build run: pnpm build - name: Deploy to Server uses: easingthemes/ssh-deploy@v2.1.5 env: SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }} ARGS: '-rltgoDzvO --delete' SOURCE: dist REMOTE_HOST: '192.168.0.19' REMOTE_USER: root TARGET: /var/www/test/