Skip to content

Clean up cytoscape

Clean up cytoscape #6

Workflow file for this run

name: Deploy Theme to Vercel
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: npm install
working-directory: theme
- run: npx vercel pull --yes --token=${{ secrets.VERCEL_TOKEN }}
working-directory: theme
# This one for build in github actions:
- run: npx vercel build --prod
working-directory: theme
- run: npx vercel deploy --prod --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
working-directory: theme
# This one for build on vercel:
# - run: npx vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }}