We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2170c6d commit 500dbf0Copy full SHA for 500dbf0
2 files changed
.github/workflows/ci.yml
@@ -73,7 +73,7 @@ jobs:
73
cat semantic-release-output.log
74
exit 1
75
fi
76
- tagFormat=$(jq -r .tagFormat .releaserc)
+ tagFormat=$(node -e "const config=require('./release.config.js'); console.log(config.tagFormat)")
77
if [ "${tagFormat}" = "null" ]
78
then
79
tagFormat="v\${version}"
.github/workflows/release.yml
@@ -64,7 +64,7 @@ jobs:
64
id: output_version_tag
65
run: |
66
NEXT_VERSION=$(npx semantic-release --dry-run | grep -i 'The next release version is' | sed -E 's/.* ([[:digit:].]+)$/\1/')
67
68
69
70
0 commit comments