mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-30 05:23:37 +08:00
fix: pin 8 actions to commit SHA, extract 1 expressions to env vars
This commit is contained in:
parent
b353a7c863
commit
4092c6d0a9
2
.github/workflows/pullrequest-ci-run.yml
vendored
2
.github/workflows/pullrequest-ci-run.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.runner_label }}
|
runs-on: ${{ matrix.runner_label }}
|
||||||
steps:
|
steps:
|
||||||
- name: Test Workflows
|
- name: Test Workflows
|
||||||
uses: comfy-org/comfy-action@main
|
uses: comfy-org/comfy-action@2239a587d36772deab9605f1543abf0dc8aa8f92 # main
|
||||||
with:
|
with:
|
||||||
os: ${{ matrix.os }}
|
os: ${{ matrix.os }}
|
||||||
python_version: ${{ matrix.python_version }}
|
python_version: ${{ matrix.python_version }}
|
||||||
|
|||||||
2
.github/workflows/stable-release.yml
vendored
2
.github/workflows/stable-release.yml
vendored
@ -162,7 +162,7 @@ jobs:
|
|||||||
ls
|
ls
|
||||||
|
|
||||||
- name: Upload binaries to release
|
- name: Upload binaries to release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2
|
||||||
with:
|
with:
|
||||||
files: ComfyUI_windows_portable_${{ inputs.rel_name }}${{ inputs.rel_extra_name }}.7z
|
files: ComfyUI_windows_portable_${{ inputs.rel_name }}${{ inputs.rel_extra_name }}.7z
|
||||||
tag_name: ${{ inputs.git_tag }}
|
tag_name: ${{ inputs.git_tag }}
|
||||||
|
|||||||
4
.github/workflows/test-ci.yml
vendored
4
.github/workflows/test-ci.yml
vendored
@ -40,7 +40,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.runner_label }}
|
runs-on: ${{ matrix.runner_label }}
|
||||||
steps:
|
steps:
|
||||||
- name: Test Workflows
|
- name: Test Workflows
|
||||||
uses: comfy-org/comfy-action@main
|
uses: comfy-org/comfy-action@2239a587d36772deab9605f1543abf0dc8aa8f92 # main
|
||||||
with:
|
with:
|
||||||
os: ${{ matrix.os }}
|
os: ${{ matrix.os }}
|
||||||
python_version: ${{ matrix.python_version }}
|
python_version: ${{ matrix.python_version }}
|
||||||
@ -90,7 +90,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.runner_label }}
|
runs-on: ${{ matrix.runner_label }}
|
||||||
steps:
|
steps:
|
||||||
- name: Test Workflows
|
- name: Test Workflows
|
||||||
uses: comfy-org/comfy-action@main
|
uses: comfy-org/comfy-action@2239a587d36772deab9605f1543abf0dc8aa8f92 # main
|
||||||
with:
|
with:
|
||||||
os: ${{ matrix.os }}
|
os: ${{ matrix.os }}
|
||||||
python_version: ${{ matrix.python_version }}
|
python_version: ${{ matrix.python_version }}
|
||||||
|
|||||||
2
.github/workflows/update-api-stubs.yml
vendored
2
.github/workflows/update-api-stubs.yml
vendored
@ -43,7 +43,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
if: steps.git-check.outputs.changes == 'true'
|
if: steps.git-check.outputs.changes == 'true'
|
||||||
uses: peter-evans/create-pull-request@v5
|
uses: peter-evans/create-pull-request@4e1beaa7521e8b457b572c090b25bd3db56bf1c5 # v5
|
||||||
with:
|
with:
|
||||||
commit-message: 'chore: update API models from OpenAPI spec'
|
commit-message: 'chore: update API models from OpenAPI spec'
|
||||||
title: 'Update API models from api.comfy.org'
|
title: 'Update API models from api.comfy.org'
|
||||||
|
|||||||
2
.github/workflows/update-ci-container.yml
vendored
2
.github/workflows/update-ci-container.yml
vendored
@ -45,7 +45,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create Pull Request
|
- name: Create Pull Request
|
||||||
id: create-pr
|
id: create-pr
|
||||||
uses: peter-evans/create-pull-request@v7
|
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CI_CONTAINER_PAT }}
|
token: ${{ secrets.CI_CONTAINER_PAT }}
|
||||||
branch: automation/comfyui-${{ steps.version.outputs.version }}
|
branch: automation/comfyui-${{ steps.version.outputs.version }}
|
||||||
|
|||||||
9
.github/workflows/update-version.yml
vendored
9
.github/workflows/update-version.yml
vendored
@ -52,8 +52,11 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git config --local user.name "github-actions"
|
git config --local user.name "github-actions"
|
||||||
git config --local user.email "github-actions@github.com"
|
git config --local user.email "github-actions@github.com"
|
||||||
git fetch origin ${{ github.head_ref }}
|
git fetch origin ${HEAD_REF}
|
||||||
git checkout -B ${{ github.head_ref }} origin/${{ github.head_ref }}
|
git checkout -B ${HEAD_REF} origin/${HEAD_REF}
|
||||||
git add comfyui_version.py
|
git add comfyui_version.py
|
||||||
git diff --quiet && git diff --staged --quiet || git commit -m "chore: Update comfyui_version.py to match pyproject.toml"
|
git diff --quiet && git diff --staged --quiet || git commit -m "chore: Update comfyui_version.py to match pyproject.toml"
|
||||||
git push origin HEAD:${{ github.head_ref }}
|
git push origin HEAD:${HEAD_REF}
|
||||||
|
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
@ -85,7 +85,7 @@ jobs:
|
|||||||
ls
|
ls
|
||||||
|
|
||||||
- name: Upload binaries to release
|
- name: Upload binaries to release
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@29e53e917877a24fad85510ded594ab3c9ca12de # v2
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: ComfyUI_windows_portable_nvidia_or_cpu_nightly_pytorch.7z
|
file: ComfyUI_windows_portable_nvidia_or_cpu_nightly_pytorch.7z
|
||||||
|
|||||||
@ -97,7 +97,7 @@ jobs:
|
|||||||
ls
|
ls
|
||||||
|
|
||||||
- name: Upload binaries to release
|
- name: Upload binaries to release
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@29e53e917877a24fad85510ded594ab3c9ca12de # v2
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: new_ComfyUI_windows_portable_nvidia_cu${{ inputs.cu }}_or_cpu.7z
|
file: new_ComfyUI_windows_portable_nvidia_cu${{ inputs.cu }}_or_cpu.7z
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user