Skip to content

small fixes

small fixes #3

Workflow file for this run

name: Pages
on:
push:
branches: [main]
paths:
- 'blogpost/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: blogpost
- uses: actions/deploy-pages@v4
id: deployment