nonebot2/.github/workflows/publish-bot.yml

55 lines
1.6 KiB
YAML
Raw Normal View History

2021-12-01 19:17:10 +00:00
name: NoneBot2 Publish Bot
2020-11-19 16:30:46 +00:00
on:
issues:
types: [opened, reopened, edited]
pull_request_target:
2020-11-19 16:30:46 +00:00
types: [closed]
issue_comment:
types: [created]
2020-11-19 16:30:46 +00:00
jobs:
plugin_test:
runs-on: ubuntu-latest
name: nonebot2 plugin test
permissions:
issues: read
outputs:
result: ${{ steps.plugin-test.outputs.RESULT }}
output: ${{ steps.plugin-test.outputs.OUTPUT }}
steps:
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Test Plugin
id: plugin-test
run: |
curl -sSL https://raw.githubusercontent.com/nonebot/nonebot2-publish-bot/main/plugin_test.py -o plugin_test.py
python plugin_test.py
publish_bot:
2020-11-19 16:30:46 +00:00
runs-on: ubuntu-latest
name: nonebot2 publish bot
needs: plugin_test
2020-11-19 16:30:46 +00:00
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: NoneBot2 Publish Bot
2022-02-16 03:10:54 +00:00
uses: docker://ghcr.io/nonebot/nonebot2-publish-bot:main
2020-11-19 16:30:46 +00:00
with:
2020-11-20 05:38:28 +00:00
token: ${{ secrets.GH_TOKEN }}
config: >
{
"base": "master",
"plugin_path": "website/static/plugins.json",
"bot_path": "website/static/bots.json",
"adapter_path": "website/static/adapters.json"
}
env:
PLUGIN_TEST_RESULT: ${{ needs.plugin_test.outputs.result }}
PLUGIN_TEST_OUTPUT: ${{ needs.plugin_test.outputs.output }}