From 34a610a012315e60151aed1869aa28bc3ea019b6 Mon Sep 17 00:00:00 2001 From: Real-MullaC Date: Fri, 13 Sep 2024 12:51:27 +0100 Subject: [PATCH 1/4] Update github-pages.yml --- .github/workflows/github-pages.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 75bf243d..75448209 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -3,10 +3,11 @@ name: GitHub Pages Deploy on: push: paths: - - 'mkdocs.yml' + - '.github/mkdocs.yml' + - '.github/requirements.txt' - 'docs/**' - 'overrides/**' - - 'CONTRIBUTING.md' + - '.github/CONTRIBUTING.md' workflow_dispatch: jobs: From 5b5d163ab9d8e98d8293cd4747ec483b288c74b7 Mon Sep 17 00:00:00 2001 From: Real-MullaC Date: Fri, 13 Sep 2024 21:42:03 +0100 Subject: [PATCH 2/4] Adds to the docs and moves some files. --- CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 .github/mkdocs.yml | 4 +++- roadmap.md => docs/roadmap.md | 0 3 files changed, 3 insertions(+), 1 deletion(-) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) rename roadmap.md => docs/roadmap.md (100%) diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/.github/mkdocs.yml b/.github/mkdocs.yml index c8f530e9..b0453a8e 100644 --- a/.github/mkdocs.yml +++ b/.github/mkdocs.yml @@ -5,7 +5,9 @@ docs_dir: '../docs' nav: - Introduction: 'index.md' - User Guide: 'userguide.md' - - Contributing Guide: 'contribute.md' + - Contributing: + - Contributing Guide: 'contribute.md' + - Roadmap: 'roadmap.md' - Documentation: - Known Issues: 'KnownIssues.md' - FAQ: 'faq.md' diff --git a/roadmap.md b/docs/roadmap.md similarity index 100% rename from roadmap.md rename to docs/roadmap.md From 4c2e754eaa5f83ec88f839ee5892485e9f37d5be Mon Sep 17 00:00:00 2001 From: hubster-bot Date: Fri, 13 Sep 2024 21:45:59 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b892afc1..c3a2ef68 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,9 @@ For comprehensive information on how to use Linutil, visit the [Linutil Official ## 🛠 Contributing -We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](CONTRIBUTING.md) to understand how to make the most effective and efficient contributions. +We welcome contributions from the community! Before you start, please review our [Contributing Guidelines](.github/CONTRIBUTING.md) to understand how to make the most effective and efficient contributions. + +[Official LinUtil Roadmap](https://christitustech.github.io/linutil/roadmap) ## 🏅 Thanks to All Contributors From c7f9dd11ce95fc300f869a2e2859237f353fbac7 Mon Sep 17 00:00:00 2001 From: hubster-bot Date: Fri, 13 Sep 2024 22:18:42 +0100 Subject: [PATCH 4/4] Update github-pages.yml --- .github/workflows/github-pages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 75448209..0bd2d476 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -30,4 +30,6 @@ jobs: run: pip install -r .github/requirements.txt - name: Build & Deploy using mkdocs + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: mkdocs gh-deploy --force -f .github/mkdocs.yml