lumeland / build

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lume build

This action setup Deno, build your Lume site and cache the DENO_DIR directory so the next builds are faster.

Usage

name: Build site

on: push

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - uses: lumeland/build@v1

By default runs deno task build command. To configure a different command:

steps:
- uses: actions/checkout@v4
- uses: lumeland/build@v1
  with:
    cmd: deno task build --location=https://example.com

About