platformio-publish
星标5
分支1
更新时间2026年5月30日 15:55
Procedure to update and publish new PlatformIO package version
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Procedure to update and publish new PlatformIO package version
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | platformio-publish |
| description | Procedure to update and publish new PlatformIO package version |
Detailed instructions for the agent.
library.json in two places: the top-level version field and the build.flags value that sets ESPMESHMESH_VERSION. Use the numeric version only (no leading v), e.g. 1.2.3.bump to 1.2.3 where 1.2.3 is the new version.v1.2.3 with the same digits. Use the tag name as the tag message (e.g. -m "v1.2.3").origin.# Create a new tag with the same name and message v1.2.3
git tag -a v1.2.3 -m "v1.2.3"
# Push the current main branch on origin
git push origin main
# Push the new tag on origin
git push origin v1.2.3
# Use the pio client to publish the library
~/.platformio/penv/bin/pio package publish --no-interactive
Replace 1.2.3 / v1.2.3 and main with the version and branch you are releasing.