File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7373 cat semantic-release-output.log
7474 exit 1
7575 fi
76- tagFormat=$(jq -r .tagFormat .releaserc )
76+ tagFormat=$(node -e "const config=require('./release.config.js'); console.log(config.tagFormat)" )
7777 if [ "${tagFormat}" = "null" ]
7878 then
7979 tagFormat="v\${version}"
Original file line number Diff line number Diff line change 6464 id : output_version_tag
6565 run : |
6666 NEXT_VERSION=$(npx semantic-release --dry-run | grep -i 'The next release version is' | sed -E 's/.* ([[:digit:].]+)$/\1/')
67- tagFormat=$(jq -r .tagFormat .releaserc )
67+ tagFormat=$(node -e "const config=require('./release.config.js'); console.log(config.tagFormat)" )
6868 if [ "${tagFormat}" = "null" ]
6969 then
7070 tagFormat="v\${version}"
You can’t perform that action at this time.
0 commit comments