ai assistant bug fix and user model update #24
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: Vercel CD | |
# on: | |
# # workflow_run: | |
# # workflows: [Docker Image CI] | |
# # types: | |
# # - completed | |
# push: | |
# branches: [ "main" ] | |
# jobs: | |
# deploy: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Deploy to Vercel | |
# working-directory: frontend | |
# env: | |
# VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }} | |
# run: | | |
# npm install --global vercel | |
# vercel pull --yes --environment=preview --token=$VERCEL_TOKEN | |
# vercel build --token=$VERCEL_TOKEN | |
# vercel deploy --prebuilt --token=$VERCEL_TOKEN |