TomyJan
39de1cd0f2
Some checks failed
Build and deploy to dev server / Deploy (push) Has been cancelled
39 lines
966 B
YAML
39 lines
966 B
YAML
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: 20.16.0
|
|
registry-url: ${{ vars.REGISTRY_URL }}
|
|
cache: 'pnpm'
|
|
- name: Install deps
|
|
run: pnpm install
|
|
- name: Build
|
|
run: pnpm build
|
|
- name: Deploy to Server
|
|
uses: https://git.daoyoucloud.com/TomyJan/easingthemes-ssh-deploy@v5.1.1
|
|
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/
|