Skip to content

Commit

Permalink
Merge pull request #13 from Moujuruo/auto_workflow
Browse files Browse the repository at this point in the history
feat: 增加部署自动化代码
  • Loading branch information
Moujuruo authored May 23, 2024
2 parents e897abe + f37e13c commit 36c9a22
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run Backend
run: |
python backend/run_app.py &
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install dependencies
run: |
cd frontend
npm install
- name: Build
run: |
cd frontend
npm run build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: frontend/build

0 comments on commit 36c9a22

Please sign in to comment.