Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
View runs Go to file
 
 
Cannot retrieve contributors at this time
# This workflow will run tests using node and then publish to github pages
name: gh-pages publisher 🚀
on:
push:
branches: [ master ]
jobs:
publish-gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: git config user.name "Trishul Goel" && git config user.email "trishul.goel@gmail.com"
- run: npm run deploy
env:
GH_TOKEN: ${{secrets.SECRET_GITHUB_TOKEN}}