Skip to content

(build) Use 'standard' packaging step instead. #109

(build) Use 'standard' packaging step instead.

(build) Use 'standard' packaging step instead. #109

Workflow file for this run

---
name: conan-package
# Exports the recipe, sources and binaries for Mac, Windows and Linux and upload these to the server such that these can
# be used downstream.
#
# It should run on pushes against main or CURA-* branches, but it will only create the binaries for main and release branches
on:
workflow_dispatch:
inputs:
conan_id:
required: false
type: string
description: 'The full conan package ID, e.g. "curaengine_plugin_infill_generate/1.2.3@ultimaker/stable"'
create_latest_alias:
required: true
default: false
type: boolean
description: 'Create latest alias'
push:
paths:
- 'include/**'
- 'src/**'
- 'tests/**'
- 'CuraEngineTiledInfill/**'
- 'templates'
- 'conanfile.py'
- 'CMakeLists.txt'
- '.github/workflows/conan-package.yml'
- '.github/workflows/requirements-conan-package.txt'
branches:
- main
- 'CURA-*'
- '[0-9].[0-9]*'
- '[0-9].[0-9][0-9]*'
tags:
- '[0-9]+.[0-9]+.[0-9]*'
- '[0-9]+.[0-9]+.[0-9]'
jobs:
#FIXME: put back main once merged
conan-package:
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@CURA-11622_conan_v2
with:
package_name: curaengine_plugin_infill_generate
secrets: inherit