Skip to content

Commit

Permalink
release: 0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
shengwang52005 committed Aug 14, 2024
1 parent 874d4b1 commit dcd6a64
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 91 deletions.
87 changes: 0 additions & 87 deletions .github/workflows/noneflow.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry publish --build --username __token__ --password $PYPI_PASSWORD --skip-existing
poetry publish --build --username __token__ --password $PYPI_API_TOKEN --skip-existing
8 changes: 6 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
from nonebot.plugin import PluginMetadata
import nonebot

from .pokepoke_miss import *
from nonebot.plugin import PluginMetadata
from pathlib import Path

sub_plugins = nonebot.load_plugins(
str(Path(__file__).parent.joinpath("plugins").resolve())
)

# 插件元数据
__plugin_meta__ = PluginMetadata(
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pokepoke_miss"
version = "0.1.11"
version = "0.1.12"
description = "wmc的戳一戳回复插件,消息内容、概率都可以定制喔~"
authors = ["Miaowing <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit dcd6a64

Please sign in to comment.