Skip to content

Commit

Permalink
🐛 fix: 更新发布工作流以监听pyproject.toml文件的更改,并将版本号更新至0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvandia committed Nov 26, 2024
1 parent 76f37d8 commit 4187cdc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Publish package to PyPI

on:
push:
tags:
- 'v*' # 匹配"v1.0.0"、"v1.0.0-alpha"等发布标签
on:
push:
paths:
- 'pyproject.toml'

permissions:
contents: write # 如果您的包发布到 GitHub Packages,则需要此权限
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "pdm.backend"

[project]
name = "nonebot-plugin-fakemsg"
version = "0.1.7"
version = "0.1.8"
description = "适用于onebot的伪消息插件"
authors = [
{name = "Cvandia",email = "[email protected]"},
Expand Down

0 comments on commit 4187cdc

Please sign in to comment.