mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
63 lines
2 KiB
YAML
63 lines
2 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 Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
cache: npm
|
|
cache-dependency-path: website/package-lock.json
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Build web workspace
|
|
working-directory: website
|
|
run: |
|
|
npm ci
|
|
npm run build:static
|
|
- name: Prepare Studio package
|
|
run: python scripts/package_studio.py
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel build
|
|
- name: Build package
|
|
run: |
|
|
python -m build --outdir dist
|
|
python -m build packages/reme_ai_studio --outdir dist
|
|
- name: Test installation
|
|
run: |
|
|
REME_WHEEL="$(pwd)/$(ls dist/reme_ai-[0-9]*.whl)"
|
|
python -m zipfile -l "${REME_WHEEL}" | (! grep 'reme/web/')
|
|
pip install --find-links "$(pwd)/dist" "${REME_WHEEL}[core]"
|
|
python -c "import reme; print(reme.__version__)"
|
|
python -c "from reme_ai_studio import static_dir; assert (static_dir() / 'index.html').is_file()"
|
|
python -c "from reme.utils import resolve_web_static_dir; assert (resolve_web_static_dir() / 'index.html').is_file()"
|
|
- name: Publish package to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|