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:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-14 17:28:08 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2022-07-14 17:28:08 +0300
commite0c7259149fce773c85e0e8b5ef3f67c8f523c87 (patch)
tree40d8be84beea15726cf7f838742cd8225658b8ff
parent77979c384de30680c0d0d6db7e6a4dbb4e10eaf2 (diff)
Notify on success
Contributes to CURA-9365
-rw-r--r--.github/workflows/cura-installer.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/cura-installer.yml b/.github/workflows/cura-installer.yml
index a4adf07945..11fe0ace35 100644
--- a/.github/workflows/cura-installer.yml
+++ b/.github/workflows/cura-installer.yml
@@ -210,3 +210,16 @@ jobs:
dist/*.AppImage
dist/*.asc
retention-days: 2
+
+ notify-export:
+ if: ${{ always() }}
+ needs: [ cura-installer-create ]
+
+ uses: ultimaker/cura/.github/workflows/notify.yml@main
+ with:
+ success: ${{ contains(join(needs.*.result, ','), 'success') }}
+ success_title: "Create the Cura distributions"
+ success_body: "Installers for ${{ inputs.cura_conan_version }}"
+ failure_title: "Failed to create the Cura distributions"
+ failure_body: "Failed to create at least 1 installer for ${{ inputs.cura_conan_version }}"
+ secrets: inherit