blog/.gitea/workflows/build.yml
mohamad f4a3e2379e
Some checks are pending
Build and Deploy Blog / build (push) Waiting to run
weeee💃
2025-01-26 02:04:29 +01:00

25 lines
489 B
YAML

name: Build and Deploy Blog
on: [push]
jobs:
build:
runs-on: docker
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