Merge branch '5.1' into CURA-9459_standard_default_install_path

This commit is contained in:
Jelle Spijker 2022-07-15 07:56:26 +02:00
commit 363f65211e
4 changed files with 21 additions and 100 deletions

View file

@ -68,7 +68,7 @@ jobs:
from git import Repo
repo = Repo('.')
user = "${{ github.repository_owner }}"
user = "${{ github.repository_owner }}".lower()
project_name = "${{ inputs.project_name }}"
event_name = "${{ github.event_name }}"
issue_number = "${{ github.ref }}".split('/')[2]

View file

@ -209,3 +209,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