Skip to content
book-open

GitHub Action

Lume Build

v1.0.0 Latest version

Lume Build

book-open

Lume Build

Build a site using the Lume static site generator

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Lume Build

uses: lumeland/[email protected]

Learn more about this action in lumeland/build

Choose a version

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