chore: 美化各流程的插件测试输出 (#275) #31
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
name: Plugin Test Container Builder | |
on: | |
push: | |
paths: | |
- "src/providers/docker_test/**" | |
pull_request: | |
paths: | |
- "src/providers/docker_test//**" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Docker | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
fail-fast: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Github Container Registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate Tags | |
uses: docker/metadata-action@v5 | |
id: metadata | |
with: | |
images: ghcr.io/nonebot/nonetest | |
flavor: | | |
prefix=${{ matrix.python-version }}-,onlatest=true | |
tags: | | |
type=semver,pattern={{version}} | |
type=ref,event=branch | |
- name: Build and Publish | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./src/providers/docker_test | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.metadata.outputs.tags }} | |
labels: ${{ steps.metadata.outputs.labels }} | |
build-args: PYTHON_VERSION=${{ matrix.python-version }} |