blog/.gitea/workflows/build.yml
mohamad a55f09b422
Some checks failed
Build and Deploy Blog / build (push) Failing after 2s
fix workflow
2025-01-26 02:06:09 +01:00

24 lines
469 B
YAML

name: Build and Deploy Blog
on: [push]
jobs:
build:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Pandoc
run: |
apt-get update
apt-get install -y pandoc
- name: Build site
run: |
chmod +x scripts/build.sh
./scripts/build.sh
- name: Deploy to Pages
uses: actions/pages@v1
with:
target: 'public'
keep_files: false