Skip to content

Commit

Permalink
ci: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
luckfunc committed Aug 17, 2024
1 parent e6de4a7 commit 190edf3
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# # 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 }}

0 comments on commit 190edf3

Please sign in to comment.