Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ArminJo committed Oct 22, 2021
1 parent f62f016 commit c28d72b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ runs:
ENV_BUILD_PROPERTIES: ${{ inputs.build-properties }}
ENV_EXTRA_ARDUINO_CLI_ARGS: ${{ inputs.extra-arduino-cli-args }}
ENV_EXTRA_ARDUINO_LIB_INSTALL_ARGS: ${{ inputs.extra-arduino-lib-install-args }}
ENV_SET_BUILD_PATH: ${{ inputs.set-build-path }}
ENV_SET_BUILD_PATH: ${{ inputs.set-build-path }}
ENV_DEBUG_COMPILE: ${{ inputs.debug-compile }}
ENV_DEBUG_INSTALL: ${{ inputs.debug-install }}

Expand Down
4 changes: 2 additions & 2 deletions arduino-test-compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# License: MIT
#

# Input parameter
# Input parameter, which is normally not used for Githup actions
CLI_VERSION="$1"
SKETCH_NAMES="$2"
SKETCH_NAMES_FIND_START="$3"
Expand All @@ -33,7 +33,7 @@ readonly YELLOW='\033[1;33m'
readonly BLUE='\033[0;34m'

#
# Get env parameter with higher priority, which enables the script to run directly in a step
# Get env parameter from action run with higher priority, which enables the script to run directly in a step
#
if [[ -n $ENV_CLI_VERSION ]]; then CLI_VERSION=$ENV_CLI_VERSION; fi
if [[ -n $ENV_SKETCH_NAMES ]]; then SKETCH_NAMES=$ENV_SKETCH_NAMES; fi
Expand Down

0 comments on commit c28d72b

Please sign in to comment.