Merge branch 'main' of github.com:pintman/blog #29
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 Blog | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
- name: Install dependencies | |
run: | | |
poetry run ./setup.sh | |
- name: create static website | |
run: | | |
poetry run make publish | |
- name: Commit result | |
run: | | |
git config --global user.name 'Github Action' | |
git config --global user.email 'github-action@users.noreply.github.com' | |
git commit -am "Generated new blog release" | |
git push |