Fix Podcast 82's title #59
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: publish | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Hugo dependencies for our site | |
run: sudo apt-get update && sudo apt-get -y install python3-docutils python3-pygments | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.91.2' | |
- name: Clone theme | |
run: bin/setup_theme | |
- name: Build | |
run: hugo -F | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.REPO_PUBLISH_KEY }} | |
external_repository: EDyO/edyo.github.io | |
publish_branch: master | |
publish_dir: ./public | |
cname: www.entredevyops.es |