24 lines
553 B
YAML
24 lines
553 B
YAML
name: 'Generate BOM'
|
|
description: >
|
|
Generate a BOM as a CSV for the given project and add it as an asset.
|
|
|
|
Note: currently only works for Altium projects.
|
|
author: 'shrikanth@allspice.io'
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
project_path:
|
|
description: 'Path to the project file from the root of the repo'
|
|
required: true
|
|
output_file_name:
|
|
description: 'Name of the output file'
|
|
required: true
|
|
default: 'bom.csv'
|
|
auth_token:
|
|
description: 'AllSpice API token'
|
|
required: true
|
|
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|