We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c330e commit 0c43294Copy full SHA for 0c43294
.github/workflows/publish_package.yml
@@ -39,7 +39,7 @@ jobs:
39
40
- name: Install Comfy CLI via pip
41
run: |
42
- pip install --index-url https://test.pypi.org/simple/ comfy-cli==$VERSION
+ pip install -i https://test.pypi.org/simple/ comfy-cli==${{env.VERSION}}
43
comfy --help
44
45
- name: Publish distribution to Official PyPI
@@ -124,7 +124,7 @@ jobs:
124
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
125
126
127
- run: pip install comfy-cli==$VERSION
+ run: pip install comfy-cli==${{env.VERSION}}
128
129
- name: Test Comfy CLI Help
130
run: comfy --help
0 commit comments