adds current employment, several embarassing typos #40
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: Deployment | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: Build page and deploy to pages branch | |
run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git checkout --orphan pages | |
pip3 install -r requirements.txt | |
python3 script.py | |
git reset | |
git add index.html | |
git commit -m "generated" | |
git push -f --set-upstream origin pages |