Removed portland and olympia from location #16
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: Static site CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deploy src to gh-pages | |
run: | | |
git config --global user.name 'Chris Svajlenka' | |
git config --global user.email 'chris@svajlenka.com' | |
git push origin `git subtree split --prefix src master`:gh-pages --force | |