mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* chore(workflow): update package installation to include core extra dependencies - Modified pre-commit workflow to install with [dev,core] extras - Updated python-publish workflow to install wheel with core extra dependency - Changed from direct dist/*.whl install to variable assignment for wheel path - Ensured core dependencies are included during test installation phase * chore(workflow): remove docs deployment workflow - Delete the entire docs.yml workflow file that was used for deploying documentation - Remove all related configuration including build and deploy jobs - Stop automatic deployment of docs on pushes to main branch - Remove GitHub Actions workflow for docs/ directory changes
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
# This workflow will upload a Python Package using Twine when a release is created
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
# They are provided by a third-party and are governed by
|
|
# separate terms of service, privacy policy, and support
|
|
# documentation.
|
|
|
|
name: Publish Python Package to Pypi
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel build
|
|
- name: Build package
|
|
run: python -m build
|
|
- name: Test installation
|
|
run: |
|
|
WHEEL="$(ls dist/*.whl)"
|
|
pip install "${WHEEL}[core]"
|
|
python -c "import reme; print(reme.__version__)"
|
|
- name: Publish package to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|