* feat: Allow customizing working_dir and dist_dir for Surge deployment
This commit introduces two new optional inputs to the `deploy-dist-to-surge` action:
- `working_dir`: Specifies the directory from which the Surge command should be run. Defaults to the repository root (`.`).
- `dist_dir`: Specifies the directory containing the built assets to deploy, relative to `working_dir`. Defaults to `dist`.
These changes provide more flexibility for projects where the build output is not in the default `dist` folder at the root of the repository.
Updated README.md with details on the new inputs and an example usage.
* feat: Allow customizing working_dir and dist_dir for Surge deployment
This commit introduces two new optional inputs to the `deploy-dist-to-surge` action:
- `working_dir`: Specifies the directory from which the Surge command should be run. Defaults to the repository root (`.`).
- `dist_dir`: Specifies the directory containing the built assets to deploy, relative to `working_dir`. Defaults to `dist`.
These changes provide more flexibility for projects where the build output is not in the default `dist` folder at the root of the repository.
Updated README.md with details on the new inputs and an example usage.
Also updated the test workflow `.github/workflows/deploy-dist-to-surge-tetst.yaml` to utilize and verify these new inputs.
* feat: 支持唯一测试域名并更新中文描述
此提交为 `deploy-dist-to-surge` 操作引入了 `domain_suffix` 输入,以允许在同一工作流程中为多次部署生成唯一的 Surge 域名,这对于测试至关重要。
同时包含先前对 `working_dir` 和 `dist_dir` 输入的支持,并更新了 `action.yml` 和 `README.md` 中的所有相关描述为中文。
测试工作流程已更新以使用 `domain_suffix` 并验证自定义目录和默认目录的部署。
---------
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>