Skip to content

chore(ci): fix typo #20

chore(ci): fix typo

chore(ci): fix typo #20

Workflow file for this run

name: GitHub Pages
permissions:
contents: read
pages: write
id-token: write
on:
push:
branches:
- main # Set a branch to deploy
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.121.2'
extended: true
- name: Build
run: hugo --minify --baseURL "https://rigonkmalk.github.io/blog"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4