fix start offset by negative val #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |