diff --git a/.github/workflows/fake-bpy-module-ci.yml b/.github/workflows/fake-bpy-module-ci.yml index 0ea87e5a..507d202a 100644 --- a/.github/workflows/fake-bpy-module-ci.yml +++ b/.github/workflows/fake-bpy-module-ci.yml @@ -66,7 +66,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: "3.9" + python-version: "3.8" - name: Blender downloads cache uses: actions/cache@v2 diff --git a/.github/workflows/fake-bpy-module-latest-build.yml b/.github/workflows/fake-bpy-module-latest-build.yml index 2a0b82a3..973c3731 100644 --- a/.github/workflows/fake-bpy-module-latest-build.yml +++ b/.github/workflows/fake-bpy-module-latest-build.yml @@ -77,8 +77,19 @@ jobs: path: blender - name: Generate pip Packages + if: contains(github.ref, 'run-ci/') env: RELEASE_VERSION: ${{ needs.set_versions.outputs.module_version }} + GEN_MODULE_CODE_FORMAT: "none" + GEN_MODULE_OUTPUT_LOG_LEVEL: "debug" + run: bash tools/pip_package/build_pip_package.sh blender latest ./blender ./blender-bin/blender-latest-bin + + - name: Generate pip Packages + if: "!contains(github.ref, 'run-ci/')" + env: + RELEASE_VERSION: ${{ needs.set_versions.outputs.module_version }} + GEN_MODULE_CODE_FORMAT: "pep8" + GEN_MODULE_OUTPUT_LOG_LEVEL: "warn" run: bash tools/pip_package/build_pip_package.sh blender latest ./blender ./blender-bin/blender-latest-bin - name: Archive pip packages