Compare commits

...

2 Commits

Author SHA1 Message Date
hurui200320 2028b33572 test, publish for current branch
Unit test coverage / pytest (push) Failing after 43s
Unit test coverage / pytest (pull_request) Failing after 1m5s
CI for pypl publish / publish-lib (push) Failing after 39s
2025-04-23 16:06:29 +08:00
hurui200320 33fcbd465a refactor(forgejo): temporarily upload artifacts to forgejo 2025-04-23 16:06:15 +08:00
+11 -1
View File
@@ -4,6 +4,7 @@ on:
branches:
- master # publish release on master
- develop # publish snapshot on develop
- feat/* # test
workflow_dispatch:
# allow manual trigger
env:
@@ -37,8 +38,17 @@ jobs:
- name: Build wheel
run: |
python -m build
# upload to forgejo artifacts
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: Python distributes
path: dist/*
if-no-files-found: error
retention-days: 7
# publish
- run: |
- name: publish to pulp pypi
run: |
twine upload --repository-url https://pkg.cleverthis.io/pypi/clevermicro/simple \
--username $CI_REGISTRY_USER \
--password $CI_REGISTRY_PASSWORD \