Skip to content

Publish and Update Formula #10

Publish and Update Formula

Publish and Update Formula #10

Workflow file for this run

name: Publish and Update Formula
on:
release:
types: [ created ]
jobs:
build-n-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install build and tomlkit dependencies
run: python -m pip install --upgrade pip build tomlkit
- name: Extract version from tag
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Update version in pyproject.toml
run: |
sed -i "s/version = \".*\"/version = \"${{ env.VERSION }}\"/" pyproject.toml
- name: Build distribution
run: python -m build --sdist --wheel --outdir dist/
- name: Publish distribution to PyPI
uses: pypa/[email protected]
update-homebrew-formula:
needs: build-n-publish
runs-on: ubuntu-latest
steps:
- name: Checkout Homebrew repo
uses: actions/checkout@v3
with:
repository: Comfy-Org/homebrew-comfy-cli
path: homebrew-comfy-cli
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Create virtual environment and update formula
run: |
python3 -m venv venv
source venv/bin/activate
pip install comfy-cli homebrew-pypi-poet
mkdir -p homebrew-comfy-cli/Formula
poet -f comfy-cli > homebrew-comfy-cli/Formula/comfy-cli.rb
- name: Commit and push changes
run: |
cd homebrew-comfy-cli
git config --global user.name 'GitHub Actions'
git config --global user.email '[email protected]'
git add Formula/comfy-cli.rb
git commit -m "Update comfy-cli formula"
git push