Skip to content

Commit

Permalink
fix: patch set-output command (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkolasinski-splunk authored Dec 13, 2022
1 parent 7d49998 commit 5e698ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
run: pip install -r requirements_dev.txt
- run: |
if [ ! -z $INPUT_VERSION ]; then ARG_VERSION="--ta-version=${INPUT_VERSION}"; fi
echo "::set-output name=result::$(echo $ARG_VERSION)"
echo "result=$(echo $ARG_VERSION)" >> $GITHUB_OUTPUT
echo running ucc-gen $ARG_VERSION
ucc-gen $ARG_VERSION
shell: bash
Expand Down Expand Up @@ -92,4 +92,4 @@ runs:
echo Removing trailing / from OUTPUT slim is picky
OUTPUT=$(echo $OUTPUT | sed 's/\(.*\)\//\1/')
fi
echo "::set-output name=result::$(echo $OUTPUT)"
echo "result=$(echo $OUTPUT)" >> $GITHUB_OUTPUT

0 comments on commit 5e698ec

Please sign in to comment.