Skip to content

fix(deps): update dependency tailwindcss to v3.4.1 #14

fix(deps): update dependency tailwindcss to v3.4.1

fix(deps): update dependency tailwindcss to v3.4.1 #14

Workflow file for this run

name: vercel-deploy
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@v4.1.1
- name: Cache node modules
uses: actions/cache@v3.3.2
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- uses: actions/setup-node@v4.0.1
with:
node-version: '18.x'
- name: install vercel CLI
run: yarn global add vercel
- name: Deploy Project Vercel
run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }}