Skip to content

feat: add description to content #35

feat: add description to content

feat: add description to content #35

Workflow file for this run

on:
push:
tags:
'*'
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.112.7'
extended: true
- name: Build
run: hugo --minify
- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: 'andreigatej-dev-new'
directory: 'public'
gitHubToken: ${{ secrets.GITHUB_TOKEN }}