Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle Spijker <j.spijker@ultimaker.com>2022-07-06 10:30:10 +0300
committerGitHub <noreply@github.com>2022-07-06 10:30:10 +0300
commit44bb953b27f177d461adda5e6da1120e90b7ce85 (patch)
tree53348762e6251fe0480640cbc7f86787d1c7795e /.github
parentfeebf6d003df04d7aef70e2f4173d9ed9b89e08f (diff)
Fix wrong env variable for bash
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cura-installer.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml
index 30f182e9fa..8ace88467e 100644
--- a/.github/workflows/cura-installer.yml
+++ b/.github/workflows/cura-installer.yml
@@ -181,12 +181,12 @@ jobs:
- name: Create the Linux AppImage (Bash)
if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Linux' }}
- run: python ../cura_inst/packaging/AppImage/create_appimage.py ./Ultimaker-Cura $CURA_VERSION_FULL "Ultimaker-Cura-$Env:CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.AppImage"
+ run: python ../cura_inst/packaging/AppImage/create_appimage.py ./Ultimaker-Cura $CURA_VERSION_FULL "Ultimaker-Cura-$CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.AppImage"
working-directory: dist
- name: Create the MacOS dmg (Bash)
if: ${{ github.event.inputs.installer == 'true' && runner.os == 'Macos' }}
- run: python ../cura_inst/packaging/dmg/dmg_sign_notarize.py "Ultimaker-Cura-$Env:CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.dmg"
+ run: python ../cura_inst/packaging/dmg/dmg_sign_notarize.py "Ultimaker-Cura-$CURA_VERSION_FULL-${{ runner.os }}-${{ runner.arch }}.dmg"
working-directory: dist
env:
SOURCE_DIR: ${{ env.GITHUB_WORKSPACE }}/cura_inst