docs/.gitea/workflows/build-and-publish.yaml
Nicola Belluti fe9c5a0973
All checks were successful
Build and Publish / build (push) Successful in 14s
Added CI/CD pipeline
2025-01-02 17:15:18 +01:00

34 lines
851 B
YAML

name: Build and Publish
on:
push:
branches:
- main
jobs:
build:
container: docker.io/alpine:3.21
steps:
# TODO: Use Nix Flakes
- name: Install the dependencies
run: |
apk update &&
apk add hugo git npm &&
npm install -g wrangler
- name: Checkout the code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build the blog
run: hugo --gc
- name: Upload the files to Cloudflare Pages
run: npx wrangler pages deploy $DIRECTORY --project-name=$PROJECT_NAME
env:
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
PROJECT_NAME: little-emulator
DIRECTORY: public