name: 'Edge Connect Deploy' description: 'Deploys an Edge Connect application using the edge-connect-client' author: 'DevFW' inputs: configFile: description: 'Path to the Edge Connect configuration file.' required: true dryRun: 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: 'v2.0.1' baseUrl: description: 'The base URL of the Edge Connect API.' required: true username: description: 'The username for the Edge Connect API.' required: true password: description: 'The password for the Edge Connect API.' required: true 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 }} INPUT_VERSION: ${{ inputs.version }} EDGE_CONNECT_BASE_URL: ${{ inputs.baseUrl }} EDGE_CONNECT_USERNAME: ${{ inputs.username }} EDGE_CONNECT_PASSWORD: ${{ inputs.password }}