Skip to content

Made calendar higher #11

Made calendar higher

Made calendar higher #11

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and Deploy Hugo Site
# Controls when the action will run. Triggers the workflow on push
# events but only for the master branch
on:
push:
branches: [ main ]
pull_request:
jobs:
Build_and_Deploy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.136.1'
- name: Build
run: hugo
- name: Deploy
run: hugo deploy --force --invalidateCDN
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}