mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
1615df3aa1
- Node 20 has a problem with `pnpm`; set it to Node 18 - Set the working directory for the frontend commands
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
name: PyPI Release
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'invokeai/version/invokeai_version.py'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
if: github.repository == 'invoke-ai/InvokeAI'
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
TWINE_USERNAME: __token__
|
|
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
TWINE_NON_INTERACTIVE: 1
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node 18
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: '8.12.1'
|
|
|
|
- name: Install frontend dependencies
|
|
run: pnpm install --prefer-frozen-lockfile
|
|
working-directory: invokeai/frontend/web
|
|
|
|
- name: Build frontend
|
|
run: pnpm run build
|
|
working-directory: invokeai/frontend/web
|
|
|
|
- name: Install python dependencies
|
|
run: pip install --upgrade build twine
|
|
|
|
- name: Build package
|
|
run: python3 -m build
|
|
|
|
- name: Check distribution
|
|
run: twine check dist/*
|
|
|
|
- name: Check PyPI versions
|
|
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')
|
|
run: |
|
|
pip install --upgrade requests
|
|
python -c "\
|
|
import scripts.pypi_helper; \
|
|
EXISTS=scripts.pypi_helper.local_on_pypi(); \
|
|
print(f'PACKAGE_EXISTS={EXISTS}')" >> $GITHUB_ENV
|
|
|
|
- name: Upload package
|
|
if: env.PACKAGE_EXISTS == 'False' && env.TWINE_PASSWORD != ''
|
|
run: twine upload dist/*
|