Skip to content

fix start offset by negative val #31

fix start offset by negative val

fix start offset by negative val #31

Workflow file for this run

name: Deploy GitHub Pages
on: [push]
jobs:
deploy_gh_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependency
run: npm install
- name: Build App
run: npm run build
- name: Upload GitHub Pages
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
cd dist-app
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
git init
git add -A .
git commit -m 'gh-pages'
git push -f https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY HEAD:gh-pages