This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
fix(deps): update dependency express-rate-limit to ^6.11.2 #4
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-deploy | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
Deploy-Production: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4.0.0 | |
- name: Use Node.js ${{ matrix.node-version }} and install vercel CLI | |
uses: actions/setup-node@v3.8.1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install --global vercel@latest | |
- name: Deploy Project Vercel | |
run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }} |