File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22phony : help
33
44# Release tag for the action
5- VERSION := v0.9.0
5+ VERSION := v0.9.1
66
77# GitHub Actions bogus variables
88GITHUB_REF ?= refs/heads/null
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ outputs:
4545 description : Name of the branch code was pushed into
4646runs :
4747 using : docker
48- image : docker://devopsinfra/action-commit-push:v0.9.0
48+ image : docker://devopsinfra/action-commit-push:v0.9.1
4949 env :
5050 GITHUB_TOKEN : ${{ inputs.github_token }}
5151branding :
Original file line number Diff line number Diff line change @@ -85,8 +85,12 @@ elif [[ -n ${FILES_CHANGED} ]]; then
8585fi
8686
8787# Finish
88- echo " files_changed=${FILES_CHANGED} " >> " $GITHUB_OUTPUT "
89- echo " branch_name=${BRANCH} " >> " $GITHUB_OUTPUT "
88+ {
89+ echo " files_changed<<EOF"
90+ echo " ${FILES_CHANGED} "
91+ echo " EOF"
92+ echo " branch_name=${BRANCH} "
93+ } >> " $GITHUB_OUTPUT "
9094if [[ ${RET_CODE} != " 0" ]]; then
9195 echo -e " \n[ERROR] Check log for errors."
9296 exit 1
You can’t perform that action at this time.
0 commit comments