Skip to content

Merge pull request #78 from terrateamio/dependabot/npm_and_yarn/docs/… #6

Merge pull request #78 from terrateamio/dependabot/npm_and_yarn/docs/…

Merge pull request #78 from terrateamio/dependabot/npm_and_yarn/docs/… #6

Workflow file for this run

name: docs
env:
REPO_OWNER: ${{ github.repository_owner }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
paths:
- 'docs/**'
jobs:
deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel environment
run: vercel pull --yes --environment=production --scope=${REPO_OWNER} --token=${{ secrets.VERCEL_TOKEN }}
- name: Build project artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy project artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}