Skip to content

Commit

Permalink
very minimal viable product
Browse files Browse the repository at this point in the history
  • Loading branch information
KevCaz committed Sep 20, 2023
1 parent 676306c commit ebd9257
Show file tree
Hide file tree
Showing 31 changed files with 7,975 additions and 401 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build demo website

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21.0'
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.113.0'
extended: true
- name: Build demo website
working-directory: exampleSite
run: hugo --minify
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build demo website

on:
push:
branches:
- main

jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21.0'
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.113.0'
extended: true
- name: Build demo website
working-directory: exampleSite
run: hugo --minify
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: exampleSite/public
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@

# Go workspace file
go.work
public
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bulla

A minimal [hugo module](https://gohugo.io/hugo-modules/) that includes [bulma](https://bulma.io/).
A minimal [hugo module/theme](https://gohugo.io/hugo-modules/) that includes [bulma css](https://bulma.io/). So far code from https://github.com/StefMa/hugo-fresh to add bulma.

1 change: 1 addition & 0 deletions assets/style.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import "bulma/bulma"
3 changes: 0 additions & 3 deletions content/_index.md

This file was deleted.

25 changes: 0 additions & 25 deletions content/about.md

This file was deleted.

5 changes: 0 additions & 5 deletions content/archives.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/homepage/about.md

This file was deleted.

3 changes: 0 additions & 3 deletions content/homepage/index.md

This file was deleted.

7 changes: 0 additions & 7 deletions content/homepage/work.md

This file was deleted.

6 changes: 0 additions & 6 deletions content/post/_index.md

This file was deleted.

46 changes: 0 additions & 46 deletions content/post/emoji-support.md

This file was deleted.

148 changes: 0 additions & 148 deletions content/post/markdown-syntax.md

This file was deleted.

49 changes: 0 additions & 49 deletions content/post/math-typesetting.md

This file was deleted.

Loading

0 comments on commit ebd9257

Please sign in to comment.