diff --git a/.gitea/workflows/build-and-publish.yaml b/.gitea/workflows/build-and-publish.yaml new file mode 100644 index 0000000..c15ed4f --- /dev/null +++ b/.gitea/workflows/build-and-publish.yaml @@ -0,0 +1,33 @@ +name: Build and Publish + +on: + push: + branches: + - main + +jobs: + build: + container: docker.io/alpine:3.19 + 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 --minify --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: blog + DIRECTORY: public