Skip to content

fix: main.yml #9

fix: main.yml #9 #90

Workflow file for this run

name: CICD
on:
push:
branches:
- release
merge_group:
branches:
- release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install rsync
run: sudo apt-get install rsync -y
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8
run_install: true
- name: pnpm i
run: pnpm i
- name: Set Debug Environment Variable
run: echo "ACTIONS_RUNNER_DEBUG=true" >> $GITHUB_ENV
- name: build
run: npx craco build
- name: Deploy to Server
uses: easingthemes/[email protected]
with:
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: root
SOURCE: /build
TARGET: /www/temp