mirror of https://github.com/msgbyte/tailchat
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			488 B
		
	
	
	
		
			YAML
		
	
name: "deploy nightly test"
 | 
						|
 | 
						|
on:
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
jobs:
 | 
						|
  deploy:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: checkout
 | 
						|
        uses: actions/checkout@v2
 | 
						|
      - name: Deploy Prod
 | 
						|
        uses: amondnet/vercel-action@master
 | 
						|
        env:
 | 
						|
          VERSION: ${{ env.GITHUB_SHA }}
 | 
						|
        with:
 | 
						|
          vercel-token: ${{ secrets.VERCEL_TOKEN }}
 | 
						|
          vercel-org-id: ${{ secrets.ORG_ID}}
 | 
						|
          vercel-project-id: ${{ secrets.PROJECT_ID}}
 | 
						|
          working-directory: ./
 |