Skip to content

Fix workflow path trigger in package.yml to include correct location #2

Fix workflow path trigger in package.yml to include correct location

Fix workflow path trigger in package.yml to include correct location #2

Workflow file for this run

name: package
on:
push:
paths:
- 'src/**'
- 'include/**'
- 'cli/**'
- 'pyUvula/**'
- 'conanfile.py'
- 'conandata.yml'
- 'CMakeLists.txt'
- '.github/workflows/package.yml'
branches:
- main
- master
- 'CURA-*'
- 'NP-*'
- 'PP-*'
- '[0-9].[0-9]*'
- '[0-9].[0-9][0-9]*'
tags:
- '[0-9].[0-9].[0-9]*'
- '[0-9].[0-9][0-9].[0-9]*'
jobs:
conan-package:
uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main
with:
platform_wasm: true
secrets: inherit
npm-package:
needs: [ conan-package ]
uses: ultimaker/cura-workflows/.github/workflows/npm-package.yml@main
with:
package_version_full: ${{ needs.conan-package.outputs.package_version_full }}
secrets: inherit