diff --git a/.github/workflows/man-page-deploy.yml b/.github/workflows/man-page-deploy.yml index baff4ef3a..412802f5d 100644 --- a/.github/workflows/man-page-deploy.yml +++ b/.github/workflows/man-page-deploy.yml @@ -9,7 +9,6 @@ jobs: man-page-gen: name: Generate Man Pages runs-on: ubuntu-latest - if: ${{ github.repository_owner == 'Tearran' }} steps: - name: Checkout uses: actions/checkout@v2 @@ -20,13 +19,8 @@ jobs: - name: Convert Markdown to Man Pages run: | for file in share/doc/armbian-configng/*.1.md; do - pandoc -s -t man $file -o ${file%.1.md}.1 - done - - - name: Compress Man Pages - run: | - for file in share/doc/armbian-configng/*.1; do - gzip $file + pandoc -s -t man $file -o ${file%.md} + gzip ${file%.md} done - name: Move Man Pages diff --git a/share/man/man1/armbian-configng.md b/share/man/man1/armbian-configng.md deleted file mode 100755 index 6e4145ec5..000000000 --- a/share/man/man1/armbian-configng.md +++ /dev/null @@ -1,91 +0,0 @@ - -
- -# User guide -## Quick start -Run the following commands: - - sudo apt install git - cd ~/ - git clone https://github.com/armbian/configng.git - cd configng - ./bin/armbian-configng --dev - -If all goes well you should see the Text-Based User Inerface (TUI) - -### To see a list of all functions and their descriptions, run the following command: -~~~ -bash ~/configng/bin/armbian-configng -h -~~~ -## Coding Style -follow the following coding style: -~~~ -# @description A short description of the function. -# -# @exitcode 0 If successful. -# -# @options A description if there are options. -function group::string() {s - echo "hello world" - return 0 -} -~~~ -## Codestyle can be used to auto generate - - [Markdown](share/armbian-configng/readme.md) - - [JSON](share/armbian-configng/data/armbian-configng.json) - - [CSV](share/armbian-configng/data/armbian-configng.csv) - - [HTML](share/armbian-configng/armbian-configng-table.html) - - [github.io](//tearran/github.io/armbian-configng/index.html) -## Functions list as of 2024-01-03 -## locales -System and Security - -### set_timezones.sh - - - **Group Name:** locales - - **Action Name:** Timezone - - **Options:** user selection - - **Description:** Time zone configuration - -## system -Locale Language Region Time Keyboard - -### get_system_clone.sh - - - **Group Name:** testing - - **Action Name:** Install - - **Options:** [sdcard] [emmc] [usb] - - **Description:** Armbian installer - -### see_monitor.sh - - - **Group Name:** monitor - - **Action Name:** Bencharking - - **Options:** help message - - **Description:** Monitor and Bencharking. - -### set_freeze.sh - - - **Group Name:** testing - - **Action Name:** Kernel_hold - - **Options:** [frozen] [unfrozen] - - **Description:** Kernal U-boot update Hold/Unhold. - -### set_wifi.sh - - - **Group Name:** network - - **Action Name:** NMTUI - - **Options:** connect - - **Description:** Network Manager. - - -# Inclueded projects -- [Bash Utility](https://labbots.github.io/bash-utility) -- [Armbian config](https://github.com/armbian/config.git) -