作为我们文档重组的一部分,此页面正在逐步淘汰。
点击此卡片跳转到包含最新信息的更新版本。
如果您在新的文档中发现任何差异或需要改进的地方,请使用页面底部的“报告问题”按钮。
README.md
git init git add . git commit -m "Initial commit: Add plugin files"
git config --global user.name "Your Name" git config --global user.email "your.email@example.com"
git remote add origin https://github.com/<your-username>/<repository-name>.git
打包插件前,请确保插件的 manifest.yaml 文件和 /provider 路径下的 .yaml 文件中的 author 字段与 GitHub ID 保持一致。
manifest.yaml
/provider
.yaml
git branch -M main git push -u origin main
git tag -a v0.0.1 -m "Release version 0.0.1" git push origin v0.0.1
Was this page helpful?