Skip to content

Update main.yml

Update main.yml #74

Workflow file for this run

name: Production Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@canary
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Send FEISHUNOTICE on failure
if: failure()
run: |
curl -X POST -H "Content-Type: application/json" -d '{ "msg_type": "post", "content": { "post": { "zh_cn": { "title": "项目更新通知", "content": [ [{ "tag": "text", "text": "Flutter 项目部署失败: " }, { "tag": "a", "text": "请查阅 GitHub workflow", "href": "https://github.com/BuidlerDAO/oasis_circle_web_build/actions" } ] ] } } } }' ${{ secrets.FEISHUNOTICE_URL }}