From cc238cfd47a28d00238577ec59895c3301c98760 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Thu, 28 Aug 2025 22:40:50 +0800 Subject: [PATCH] :pencil: Document structure adjustment --- README.md | 1 + README_CN.md | 1 + docs/README.md | 1 + docs/{use-pake-for-github-action.md => pake-action.md} | 10 +++++++--- 4 files changed, 10 insertions(+), 3 deletions(-) rename docs/{use-pake-for-github-action.md => pake-action.md} (83%) diff --git a/README.md b/README.md index de88b5e..b419399 100644 --- a/README.md +++ b/README.md @@ -202,6 +202,7 @@ pnpm run build - **[CLI Usage](docs/cli-usage.md)** | [中文](docs/cli-usage_CN.md) - Command-line interface reference - **[Advanced Usage](docs/advanced-usage.md)** | [中文](docs/advanced-usage_CN.md) - Customization and advanced features - **[GitHub Actions](docs/github-actions-usage.md)** | [中文](docs/github-actions-usage_CN.md) - Build apps online +- **[Pake Action](docs/pake-action.md)** - Use Pake as GitHub Action in your projects - **[Contributing](CONTRIBUTING.md)** - How to contribute to development ## Developers diff --git a/README_CN.md b/README_CN.md index e60db2a..4af7bf9 100644 --- a/README_CN.md +++ b/README_CN.md @@ -203,6 +203,7 @@ pnpm run build - **[CLI 使用指南](docs/cli-usage_CN.md)** - 命令行接口参考 - **[高级用法指南](docs/advanced-usage_CN.md)** - 自定义和高级功能 - **[GitHub Actions 指南](docs/github-actions-usage_CN.md)** - 在线构建应用 +- **[Pake Action](docs/pake-action.md)** - 在你的项目中使用 Pake Action - **[贡献指南](CONTRIBUTING.md)** - 如何参与开发 ## 开发者 diff --git a/docs/README.md b/docs/README.md index 469b3b7..10e77de 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,6 +6,7 @@ Welcome to Pake documentation! Here you'll find comprehensive guides and documen - **[CLI Usage](cli-usage.md)** | [中文](cli-usage_CN.md) - Command-line interface reference - **[GitHub Actions](github-actions-usage.md)** | [中文](github-actions-usage_CN.md) - Build apps online without local setup +- **[Pake Action](pake-action.md)** - Use Pake as GitHub Action in your projects ## Developer Guides diff --git a/docs/use-pake-for-github-action.md b/docs/pake-action.md similarity index 83% rename from docs/use-pake-for-github-action.md rename to docs/pake-action.md index 51d3d63..e07529e 100644 --- a/docs/use-pake-for-github-action.md +++ b/docs/pake-action.md @@ -1,7 +1,9 @@ -# Use Pake For GitHub Action +# Pake Action Transform any webpage into a lightweight desktop app with a single GitHub Actions step. +> This guide shows how to use Pake as a GitHub Action in your own projects. For using our project's built-in GitHub Actions workflow, see [GitHub Actions Usage](github-actions-usage.md). + ## Quick Start ```yaml @@ -92,6 +94,8 @@ jobs: Use GitHub's matrix strategy to build for multiple platforms simultaneously. -## Testing +## Related Documentation -Try the action with our test workflow: [test-action.yml](.github/workflows/test-action.yml) +- [GitHub Actions Usage](github-actions-usage.md) - Using Pake's built-in workflow +- [CLI Usage](cli-usage.md) - Command-line interface reference +- [Advanced Usage](advanced-usage.md) - Customization options