From 44bda180f3d0ce6d855ecf560c95db402927bf10 Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Thu, 30 Jun 2022 23:41:26 +0200 Subject: [PATCH] Fixed path for activation script Contributes to CURA-9365 --- .github/workflows/cura-installer.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml index 0780f0ea15..106a178e69 100644 --- a/.github/workflows/cura-installer.yml +++ b/.github/workflows/cura-installer.yml @@ -127,15 +127,11 @@ jobs: - name: Set Environment variables for Cura (bash) if: ${{ runner.os != 'Windows' }} - run: | - . activate_github_actions_env.sh - working-directory: cura_inst\bin + run: . ./cura_inst/bin/activate_github_actions_env.sh - name: Set Environment variables for Cura (Powershell) if: ${{ runner.os == 'Windows' }} - run: | - .\activate_github_actions_env.ps1 - working-directory: cura_inst\Scripts + run: .\cura_inst\Scripts\activate_github_actions_env.ps1 - name: Create the Cura dist run: pyinstaller Ultimaker-Cura.spec