-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
wxt 不支持自定义输出文件名 https://github.com/wxt-dev/wxt/issues/177 | ||
|
||
因此发布的时候,tag 名,版本号 要和 实际zip 输出保持一致。 例如 | ||
|
||
因此发布的时候,tag 名,版本号 要和 实际 zip 输出版本号(package.json/version 字段)保持一致。 例如 | ||
|
||
package.json.version: 0.0.1 | ||
```bash | ||
# right | ||
git tag 0.0.1 | ||
git push origin 0.0.1 | ||
``` | ||
|
||
|
||
package.json.version: 0.0.1 | ||
```bash | ||
# wrong | ||
git tag v0.0.1 | ||
git push origin v0.0.1 | ||
``` | ||
``` |