From d7f9648fb4fd7f6c239022ac650aa2a9f74d7dd6 Mon Sep 17 00:00:00 2001 From: u3dreal <48415446+u3dreal@users.noreply.github.com> Date: Thu, 2 Nov 2023 21:59:27 +0100 Subject: [PATCH] update build for moved scripts --- .github/workflows/main.yml | 6 +++--- build_molecular.py => scripts/build_molecular.py | 0 pack_molecular.py => scripts/pack_molecular.py | 0 run_blender.py => scripts/run_blender.py | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename build_molecular.py => scripts/build_molecular.py (100%) rename pack_molecular.py => scripts/pack_molecular.py (100%) rename run_blender.py => scripts/run_blender.py (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d86cb28..22732ea 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Build with Cython id: build - run: echo "::set-output name=version::$(python pack_molecular.py)" + run: echo "::set-output name=version::$(python scripts/pack_molecular.py)" - name: Upload windows zip uses: actions/upload-artifact@v2 with: @@ -62,7 +62,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Build with Cython id: build - run: echo "::set-output name=version::$(python pack_molecular.py)" + run: echo "::set-output name=version::$(python scripts/pack_molecular.py)" - name: Upload linux zip uses: actions/upload-artifact@v2 with: @@ -93,7 +93,7 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Build with Cython id: build - run: echo "::set-output name=version::$(python pack_molecular.py)" + run: echo "::set-output name=version::$(python scripts/pack_molecular.py)" - name: Upload mac zip uses: actions/upload-artifact@v2 with: diff --git a/build_molecular.py b/scripts/build_molecular.py similarity index 100% rename from build_molecular.py rename to scripts/build_molecular.py diff --git a/pack_molecular.py b/scripts/pack_molecular.py similarity index 100% rename from pack_molecular.py rename to scripts/pack_molecular.py diff --git a/run_blender.py b/scripts/run_blender.py similarity index 100% rename from run_blender.py rename to scripts/run_blender.py