Added the CI script
This commit is contained in:
parent
c27fea312f
commit
568902728e
33
.gitea/workflows/build-and-publish.yaml
Normal file
33
.gitea/workflows/build-and-publish.yaml
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user