Skip to content

Build and deploy

Build and deploy #1033

name: Build and deploy
on:
push:
branches:
- main
# Regenerate the website every day: this will update the resume that is hosted
# and generated in a different repository.
schedule:
- cron: "0 0 * * *"
# Allows to run this workflow manually from the Actions tab.
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
name: Build & deploy to GitHub Pages
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: "latest"
- name: Download the resume
run: |
curl -s "https://api.github.com/repos/kirillbobyrev/resume/releases/latest" \
| grep "Kirill-Bobyrev-Resume.pdf" \
| cut -d : -f 2,3 \
| tr -d \" \
| tail -n 1 \
| wget -i -
mv Kirill-Bobyrev-Resume.pdf static/resume.pdf
- name: Build website
run: hugo --gc --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}