This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
✨ feat(faq): add 这不是我自己设置的皮肤 #165
Workflow file for this run
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: Deploy to Vercel | |
on: [push, pull_request] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Deploy | |
uses: amondnet/[email protected] | |
if: github.event_name == 'push' | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} | |
vercel-args: '--prod' | |
working-directory: ./ | |
github-comment: false |