Skip to content

add build action

add build action #1

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: joinframework/join-ci:latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: hugo --minify
- name: Upload Artifacts to GitHub
uses: actions/upload-artifact@v4
with:
name: hugo-ui
path: public