mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7da38e0346 | |||
|
|
84368a16c3 | ||
| 6a10ede5ba | |||
| 4c205e516f |
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@@ -7,6 +7,6 @@ version: 2
|
|||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "pip" # See documentation for possible values
|
- package-ecosystem: "pip" # See documentation for possible values
|
||||||
directory: "/" # Location of package manifests
|
directory: "/" # Location of package manifests
|
||||||
target-branch: "dev"
|
target-branch: "main"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
|||||||
33
.github/workflows/Release.yml
vendored
33
.github/workflows/Release.yml
vendored
@@ -8,18 +8,41 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
id-token: write
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- uses: actions/setup-python@v4
|
- uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
|
cache: "poetry"
|
||||||
|
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
pip install poetry
|
pip install poetry
|
||||||
- name: Build
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
poetry install
|
poetry install
|
||||||
poetry env use python
|
|
||||||
poetry publish --build -u ${{ secrets.USERNAME }} -p ${{ secrets.PASSWORD }} -n
|
- name: Get Version
|
||||||
|
id: version
|
||||||
|
run: |
|
||||||
|
echo "VERSION=$(poetry version -s)" >> $GITHUB_OUTPUT
|
||||||
|
echo "TAG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
||||||
|
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Check Version
|
||||||
|
if: steps.version.outputs.VERSION != steps.version.outputs.TAG_VERSION
|
||||||
|
run: exit 1
|
||||||
|
|
||||||
|
- name: Build Package
|
||||||
|
run: poetry build
|
||||||
|
|
||||||
|
- name: Publish Package to PyPI
|
||||||
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
|
|
||||||
|
- name: Publish Package to GitHub Release
|
||||||
|
run: gh release upload --clobber ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ from datetime import timedelta
|
|||||||
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
||||||
from nonebot.adapters import Bot, Event
|
from nonebot.adapters import Bot, Event
|
||||||
from nonebot.matcher import Matcher
|
from nonebot.matcher import Matcher
|
||||||
from nonebot_plugin_alconna import AlcMatches, At, on_alconna
|
from nonebot_plugin_alconna import At, on_alconna
|
||||||
from nonebot_plugin_orm import get_session
|
from nonebot_plugin_orm import get_session
|
||||||
from sqlalchemy import select
|
from sqlalchemy import select
|
||||||
|
|
||||||
@@ -177,11 +177,3 @@ async def _(event: Event, matcher: Matcher, rank: Rank):
|
|||||||
@alc.handle()
|
@alc.handle()
|
||||||
async def _(matcher: Matcher, account: MessageFormatError):
|
async def _(matcher: Matcher, account: MessageFormatError):
|
||||||
await matcher.finish(str(account))
|
await matcher.finish(str(account))
|
||||||
|
|
||||||
|
|
||||||
@alc.handle()
|
|
||||||
async def _(matcher: Matcher, matches: AlcMatches):
|
|
||||||
if matches.head_matched:
|
|
||||||
await matcher.finish(
|
|
||||||
f'{matches.error_info!r}\n' if matches.error_info is not None else '' + '输入"io --help"查看帮助'
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
||||||
from nonebot.adapters import Bot, Event
|
from nonebot.adapters import Bot, Event
|
||||||
from nonebot.matcher import Matcher
|
from nonebot.matcher import Matcher
|
||||||
from nonebot_plugin_alconna import AlcMatches, At, on_alconna
|
from nonebot_plugin_alconna import At, on_alconna
|
||||||
from nonebot_plugin_orm import get_session
|
from nonebot_plugin_orm import get_session
|
||||||
|
|
||||||
from ...db import query_bind_info
|
from ...db import query_bind_info
|
||||||
@@ -116,11 +116,3 @@ async def _(event: Event, matcher: Matcher, account: User):
|
|||||||
@alc.handle()
|
@alc.handle()
|
||||||
async def _(matcher: Matcher, account: MessageFormatError):
|
async def _(matcher: Matcher, account: MessageFormatError):
|
||||||
await matcher.finish(str(account))
|
await matcher.finish(str(account))
|
||||||
|
|
||||||
|
|
||||||
@alc.handle()
|
|
||||||
async def _(matcher: Matcher, matches: AlcMatches):
|
|
||||||
if matches.head_matched:
|
|
||||||
await matcher.finish(
|
|
||||||
f'{matches.error_info!r}\n' if matches.error_info is not None else '' + '输入"top --help"查看帮助'
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
from arclet.alconna import Alconna, Arg, ArgFlag, Args, CommandMeta, Option
|
||||||
from nonebot.adapters import Bot, Event
|
from nonebot.adapters import Bot, Event
|
||||||
from nonebot.matcher import Matcher
|
from nonebot.matcher import Matcher
|
||||||
from nonebot_plugin_alconna import AlcMatches, At, on_alconna
|
from nonebot_plugin_alconna import At, on_alconna
|
||||||
from nonebot_plugin_orm import get_session
|
from nonebot_plugin_orm import get_session
|
||||||
|
|
||||||
from ...db import query_bind_info
|
from ...db import query_bind_info
|
||||||
@@ -141,11 +141,3 @@ async def _(event: Event, matcher: Matcher, account: User):
|
|||||||
@alc.handle()
|
@alc.handle()
|
||||||
async def _(matcher: Matcher, account: MessageFormatError):
|
async def _(matcher: Matcher, account: MessageFormatError):
|
||||||
await matcher.finish(str(account))
|
await matcher.finish(str(account))
|
||||||
|
|
||||||
|
|
||||||
@alc.handle()
|
|
||||||
async def _(matcher: Matcher, matches: AlcMatches):
|
|
||||||
if matches.head_matched:
|
|
||||||
await matcher.finish(
|
|
||||||
f'{matches.error_info!r}\n' if matches.error_info is not None else '' + '输入"茶服 --help"查看帮助'
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = 'nonebot-plugin-tetris-stats'
|
name = 'nonebot-plugin-tetris-stats'
|
||||||
version = '1.0.0.a3'
|
version = '1.0.0.a4'
|
||||||
description = '一款基于 NoneBot2 的用于查询 Tetris 相关游戏数据的插件'
|
description = '一款基于 NoneBot2 的用于查询 Tetris 相关游戏数据的插件'
|
||||||
authors = ['scdhh <wallfjjd@gmail.com>']
|
authors = ['scdhh <wallfjjd@gmail.com>']
|
||||||
readme = 'README.md'
|
readme = 'README.md'
|
||||||
|
|||||||
Reference in New Issue
Block a user