1、fix: 修复transition addItem导致的数据问题 #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Cloud Server | |
on: | |
push: | |
paths: | |
- "proconfig/**" | |
- "servers/**" | |
- ".github/**" | |
- "model_info.json" | |
pull_request: | |
paths: | |
- "proconfig/**" | |
- "servers/**" | |
- ".github/**" | |
- "model_info.json" | |
jobs: | |
deploy: | |
name: Deploy-to-Cloud | |
runs-on: ubuntu-latest | |
env: | |
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }} | |
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10.12 | |
- name: Install Modal | |
run: | | |
python -m pip install --upgrade pip | |
pip install modal | |
pip install json5 | |
pip install requests | |
- name: Create deploy code | |
run: | | |
cp -r .ci/example_workflow/example_workflow.json ./ | |
echo "${{ secrets.MODAL_DEPLOY_CODE }}" | base64 -d > deploy.py | |
- name: Deploy job | |
run: | | |
echo "Going to deploy engine" | |
output=$(modal deploy deploy.py 2>&1 | sed '/https:/d' | sed 's/View Deployment:/Deployment successful./') | |
if echo "$output" | grep -q '╭─ Error'; then | |
echo "Deploy Error" | |
echo "success=false" >> $GITHUB_ENV | |
else | |
echo "Deploy Success" | |
echo "success=true" >> $GITHUB_ENV | |
fi | |
- name: Check for errors and exit if necessary | |
if: env.success == 'false' | |
run: | | |
echo "Error detected during deployment, exiting." | |
exit 1 | |
- name: Clean up | |
run: | | |
rm deploy.py |