Skip to content

ci: add ci

ci: add ci #1

Workflow file for this run

# # This is a basic workflow to help you get started with Actions
# name: deploy
# # Controls when the workflow will run
# on:
# # Triggers the workflow on push or pull request events but only for the main branch
# push:
# branches: [ main ]
# # Allows you to run this workflow manually from the Actions tab
# workflow_dispatch:
# # A workflow run is made up of one or more jobs that can run sequentially or in parallel
# jobs:
# build-and-deploy:
# runs-on: ubuntu-latest
# steps:
# # 检出代码
# - name: Checkout code
# uses: actions/checkout@v3
# # 设置 Node.js 环境
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '18' # 根据需要设置 Node.js 版本
# # 安装依赖
# - name: Install dependencies
# run: npm install
# # 构建应用
# - name: Build application
# run: npm run build
# - name: Deploy to the server.
# uses: cross-the-world/scp-pipeline@master
# with:
# host: ${{ secrets.REMOTE_HOST }}
# user: ${{ secrets.REMOTE_NAME }}
# pass: ${{ secrets.REMOTE_PASS }}