Skip to content

Commit

Permalink
Fix working directory in docs-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EarlOld committed Aug 3, 2024
1 parent d44dada commit c94d51a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
working-directory: ./docs
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
working-directory: ./docs
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
working-directory: ./docs
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
working-directory: ./docs
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit c94d51a

Please sign in to comment.