edge-connect-deploy-action/action.yaml

29 lines
774 B
YAML
Raw Normal View History

2025-10-02 14:07:01 +02:00
name: 'Edge Connect Deploy'
description: 'Deploys an Edge Connect application using the edge-connect-client'
author: 'DevFW'
inputs:
configFile:
2025-10-02 14:07:01 +02:00
description: 'Path to the Edge Connect configuration file.'
required: true
dryRun:
2025-10-02 14:07:01 +02:00
description: 'Perform a dry run of the deployment.'
required: false
default: 'false'
version:
description: 'The version of the edge-connect-client to use.'
required: false
default: 'v0.1.0'
runs:
using: 'composite'
steps:
- name: 'Download and run edge-connect-client'
run: |
${{ github.action_path }}/endpoint.sh
shell: bash
env:
INPUT_CONFIG_FILE: ${{ inputs.configFile }}
INPUT_DRY_RUN: ${{ inputs.dryRun }}
2025-10-02 14:07:01 +02:00
INPUT_VERSION: ${{ inputs.version }}