Skip to content

Bump ip from 2.0.0 to 2.0.1 #116

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #116

Workflow file for this run

name: build and deploy to gh-pages
on:
push:
branches:
- master
jobs:
build_and_deploy_to_gh_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: 16
- run: |
npm ci
npm run build
- run: echo 'mebtte.com' > build/CNAME
- env:
TOKEN: ${{secrets.TOKEN}}
run: |
cd build
git init
git config --local user.name mebtte
git config --local user.email [email protected]
git remote add origin https://[email protected]/$GITHUB_REPOSITORY.git
git checkout -b gh-pages
git add --all
git commit -m "deploy gh-pages"
git push origin gh-pages -f