From b25d798eb906289ab6126a75b2fb0c721be2bad9 Mon Sep 17 00:00:00 2001 From: painebenjamin <57536852+painebenjamin@users.noreply.github.com> Date: Fri, 11 Aug 2023 21:01:11 -0400 Subject: [PATCH 1/4] Update compile.yml --- .github/workflows/compile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index d119bfdb..eaa8f4cc 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -86,7 +86,7 @@ jobs: - name: Release Linux Artifact if: ${{ contains(inputs.os, 'ubuntu') && inputs.release }} run: | - gh release ${{ steps.version.outputs.version }} --clobber ./enfugue-server*tar.gz* + gh release upload ${{ steps.version.outputs.version }} --clobber ./enfugue-server*tar.gz* - name: Upload Linux artifact if: ${{ contains(inputs.os, 'ubuntu') && !inputs.release }} uses: actions/upload-artifact@v3.1.2 @@ -96,7 +96,7 @@ jobs: - name: Release Windows Artifact if: ${{ contains(inputs.os, 'windows') && inputs.release }} run: | - gh release ${{ steps.version.outputs.version }} --clobber ./build/enfugue-server*zip* + gh release upload ${{ steps.version.outputs.version }} --clobber ./build/enfugue-server*zip* - name: Upload Windows artifact if: ${{ contains(inputs.os, 'windows') && !inputs.release }} uses: actions/upload-artifact@v3.1.2 @@ -106,7 +106,7 @@ jobs: - name: Release MacOS Artifact if: ${{ contains(inputs.os, 'mac') && inputs.release }} run: | - gh release ${{ steps.version.outputs.version }} --clobber ./build/enfugue-server*tar.gz* + gh release upload ${{ steps.version.outputs.version }} --clobber ./build/enfugue-server*tar.gz* - name: Upload MacOS artifact if: ${{ contains(inputs.os, 'mac') && !inputs.release }} uses: actions/upload-artifact@v3.1.2 From 27ecb4bc69634f231be1dd2661fc032f8c8d4dc7 Mon Sep 17 00:00:00 2001 From: painebenjamin <57536852+painebenjamin@users.noreply.github.com> Date: Fri, 11 Aug 2023 21:21:22 -0400 Subject: [PATCH 2/4] Update compile-all.yml --- .github/workflows/compile-all.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/compile-all.yml b/.github/workflows/compile-all.yml index e073bf52..7e62d61b 100644 --- a/.github/workflows/compile-all.yml +++ b/.github/workflows/compile-all.yml @@ -13,20 +13,16 @@ jobs: include: - os: ubuntu-latest api: tensorrt - release: ${{ inputs.release }} - os: ubuntu-latest api: cuda - release: ${{ inputs.release }} - os: windows-latest api: tensorrt - release: ${{ inputs.release }} - os: windows-latest api: cuda - release: ${{ inputs.release }} - os: macos-13 - api: mps - release: ${{ inputs.release }} + api: mps uses: painebenjamin/app.enfugue.ai/.github/workflows/compile.yml@main with: os: ${{ matrix.os }} api: ${{ matrix.api }} + release: ${{ inputs.release }} From 21ce4954e2e52cb77ac7873ca7d62a7b58979abb Mon Sep 17 00:00:00 2001 From: painebenjamin <57536852+painebenjamin@users.noreply.github.com> Date: Fri, 11 Aug 2023 21:47:41 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 66af08cb..a77e27f3 100644 --- a/README.md +++ b/README.md @@ -273,6 +273,10 @@ Additional resources will be made available as they are needed, so don't hesitat Enfugue uses an extension of `diffusers.StableDiffusionPipeline` that provides a number of additional arguments over the typical signature, weaving between `txt2img`, `img2img`, `inpaint` and `controlnet` as necessary. It also has TensorRT support for all models in the pipeline. Start [here](https://github.com/painebenjamin/app.enfugue.ai/tree/main/src/python/enfugue) for documentation on how it is used. +## Enfugue JSON API + +The entirety of Enfugue's capabilities are available via JSON API. Find the documentation in [the wiki.](https://github.com/painebenjamin/app.enfugue.ai/wiki/JSON-API) + ## Building For anyone interested in building from source themselves, simply check out this repository and issue a `make` command to build the associated binary release. See below for all make targets. From f256b4cdc268129a29769b70b5b2de654c3479b0 Mon Sep 17 00:00:00 2001 From: painebenjamin <57536852+painebenjamin@users.noreply.github.com> Date: Fri, 11 Aug 2023 22:15:35 -0400 Subject: [PATCH 4/4] Update compile.yml --- .github/workflows/compile.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index eaa8f4cc..b4f60424 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -16,6 +16,7 @@ jobs: runs-on: ${{ inputs.os }} env: ARTIFACT_SUFFIX: ${{ inputs.api }}- + GH_TOKEN: ${{ github.token }} MINIMAL_BUILD: 1 RUN_INTEGRATION_TEST: 0 steps: