Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 在 Github Workflow 中使用 uv build #144

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,28 +42,23 @@ jobs:
- name: Setup Python
uses: ./.github/actions/setup-python

- run: uvx --from build pyproject-build --installer uv
- run: uv build -o dist
shell: bash

- run: uvx --from build pyproject-build --installer uv -o ../../dist
- run: uv build -o dist --package alicebot-adapter-apscheduler
shell: bash
working-directory: ./packages/alicebot-adapter-apscheduler

- run: uvx --from build pyproject-build --installer uv -o ../../dist
- run: uv build -o dist --package alicebot-adapter-cqhttp
shell: bash
working-directory: ./packages/alicebot-adapter-cqhttp

- run: uvx --from build pyproject-build --installer uv -o ../../dist
- run: uv build -o dist --package alicebot-adapter-onebot
shell: bash
working-directory: ./packages/alicebot-adapter-onebot

- run: uvx --from build pyproject-build --installer uv -o ../../dist
- run: uv build -o dist --package alicebot-adapter-dingtalk
shell: bash
working-directory: ./packages/alicebot-adapter-dingtalk

- run: uvx --from build pyproject-build --installer uv -o ../../dist
- run: uv build -o dist --package alicebot-adapter-mirai
shell: bash
working-directory: ./packages/alicebot-adapter-mirai

- name: upload windows dists
uses: actions/upload-artifact@v4
Expand Down