* basic idea * generates docs * hardcoded the gen script * trying to hide magic vars * eww-state is good now * structure for cpu var is now there * renamed cpu to diskstat, bc lib supports it after all * not going to implement disk IO. go back to this commit, to see a rough idea * removed it * formatting * stopped data race * Update src/config/system_stats/ram.rs Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> * Update src/config/system_stats/disk.rs Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> * Explains macos better * Update battery.rs * Function for each OS when getting battery, a bit cleaner * reworked battery a little * all in one big file * facepalm * cleaner gen script and one huge file for the system stat stuff * merge conflicts * github interface for resolving merge conflicts sucks, this fixes it * Apply suggestions from code review Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> * Update src/config/inbuilt.rs Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> * code suggestions * component temperature is a json struct * newlines in magic vars descriptions * disks is now json, numbers are not wrapped in strings, and more idiomatic code * Update gen-docs.ts Co-authored-by: mlvzk <mlvzk@protonmail.com> * removes a unneeded heading * more doc updates and EWW_CPU_USAGE is now json * calculates battery total avg and it's a json struct Co-authored-by: ElKowar <5300871+elkowar@users.noreply.github.com> Co-authored-by: mlvzk <mlvzk@protonmail.com>
32 lines
1,015 B
YAML
32 lines
1,015 B
YAML
name: Build and deploy Github pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "docs/**"
|
|
- "gen-docs.js"
|
|
- "src/widgets/widget_definitions.rs"
|
|
- ".github/workflows/**"
|
|
jobs:
|
|
build:
|
|
name: shalzz/zola-deploy-action
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout
|
|
- uses: actions/checkout@master
|
|
|
|
# Build widget documentation
|
|
- name: Use deno to build widget documentation
|
|
uses: denoland/setup-deno@main
|
|
with:
|
|
deno-version: "v1.x"
|
|
- run: deno run --allow-read --allow-write gen-docs.ts ./src/widgets/widget_definitions.rs ./src/config/inbuilt.rs
|
|
|
|
# Build & deploy
|
|
- name: shalzz/zola-deploy-action
|
|
uses: shalzz/zola-deploy-action@v0.12.0
|
|
env:
|
|
PAGES_BRANCH: gh-pages
|
|
BUILD_DIR: docs
|
|
TOKEN: ${{ secrets.TOKEN }}
|