Skip to content

refactor(karaoke): use handleDeleteFromQueue method (#33) #14

refactor(karaoke): use handleDeleteFromQueue method (#33)

refactor(karaoke): use handleDeleteFromQueue method (#33) #14

Workflow file for this run

name: Production Tag Deployment
env:
VERCEL_ORG_ID: '${{ secrets.VERCEL_ORG_ID }}'
VERCEL_PROJECT_ID: '${{ secrets.VERCEL_PROJECT_ID }}'
VERCEL_TOKEN: '${{ secrets.VERCEL_TOKEN }}'
on:
push:
tags:
- v[0-9].[0-9]+.[0-9]+
jobs:
Deploy-Production:
runs-on: ubuntu-latest
environment:
name: Production
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token $VERCEL_TOKEN
- name: Build Project Artifacts
run: vercel build --prod --token $VERCEL_TOKEN
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token $VERCEL_TOKEN