File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed
Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -34,16 +34,15 @@ echo "--------------------------------------------------"
3434echo " Development:"
3535echo " ${development} "
3636
37- production=" ${production// ' %' / ' %25' } "
38- production=" ${production// $' \n ' / ' %0A' } "
39- production=" ${production// $' \r ' / ' %0D' } "
40-
41- development=" ${development// ' %' / ' %25' } "
42- development=" ${development// $' \n ' / ' %0A' } "
43- development=" ${development// $' \r ' / ' %0D' } "
44-
45- echo " ::set-output name=production::$production "
46- echo " ::set-output name=development::$development "
37+ delimiter=" $( openssl rand -hex 8) "
38+ echo " production<<${delimiter} " >> " ${GITHUB_OUTPUT} "
39+ echo " $production " >> " ${GITHUB_OUTPUT} "
40+ echo " ${delimiter} " >> " ${GITHUB_OUTPUT} "
41+
42+ delimiter=" $( openssl rand -hex 8) "
43+ echo " development<<${delimiter} " >> " ${GITHUB_OUTPUT} "
44+ echo " $development " >> " ${GITHUB_OUTPUT} "
45+ echo " ${delimiter} " >> " ${GITHUB_OUTPUT} "
4746
4847
4948if [ " $INPUT_DRYRUN " != " yes" ]
You can’t perform that action at this time.
0 commit comments