Skip to content

Rename github token

Rename github token #9

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- releases/*
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
- name: Deploy to GitHub Pages
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npm run deploy