-
Notifications
You must be signed in to change notification settings - Fork 53
57 lines (48 loc) · 1.47 KB
/
publish_package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Publish and Update Formula
on:
release:
types: [ created ]
jobs:
upload-to-pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python3 -m pip install --upgrade twine build
- name: Build and upload to PyPI
run: |
python -m build
twine upload dist/*
update-homebrew-formula:
needs: upload-to-pypi
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
poet -f comfy-cli > Formula/comfy-cli.rb # Directly overwrite the existing file
- name: Commit and push changes
run: |
cd homebrew-comfy-cli
git config --global user.name 'GitHub Actions'
git config --global user.email 'actions@github.com'
git add Formula/comfy-cli.rb
git commit -m "Update comfy-cli formula"
git push