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/.github/workflows/cargo-lock.yml b/.github/workflows/cargo-lock.yml index 40c37209..d6338915 100644 --- a/.github/workflows/cargo-lock.yml +++ b/.github/workflows/cargo-lock.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 75bf243d..0bd2d476 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: @@ -29,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 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 diff --git a/build/linutil b/build/linutil index 1f2e49fb..129ad203 100755 Binary files a/build/linutil and b/build/linutil differ diff --git a/roadmap.md b/docs/roadmap.md similarity index 100% rename from roadmap.md rename to docs/roadmap.md