From ced007b8e8fd20428c3ba38846825b040ccd603d Mon Sep 17 00:00:00 2001 From: Bastian Rieck Date: Wed, 5 Jun 2024 11:31:14 +0200 Subject: [PATCH] Simplified release workflow - The script does not have any external dependencies, so there is no need to use `pip` for the installation. - Fixed issue with script name. --- .github/workflows/create_manifolds_release.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/create_manifolds_release.yaml b/.github/workflows/create_manifolds_release.yaml index 63594d6..088f4c8 100644 --- a/.github/workflows/create_manifolds_release.yaml +++ b/.github/workflows/create_manifolds_release.yaml @@ -15,11 +15,10 @@ jobs: with: python-version: '3.10.11' cache: 'pip' - - run: pip install -r requirements.txt - name: Run conversion script run: | - sh script/convert_manifold.sh + sh scripts/convert_manifold.sh - name: Create release uses: "marvinpinto/action-automatic-releases@latest"