We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 987b3d2 commit 75f63e6Copy full SHA for 75f63e6
.github/workflows/pack.yml
@@ -41,6 +41,8 @@ jobs:
41
tmpFile="tmp.tmp"
42
firstEntry="$("${jqCommand}" -j ".[0]" "${changelogPath}")"
43
version="$(echo "$firstEntry" | "${jqCommand}" -j "[ .version | to_entries[] | .value ] | join(\".\")")"
44
+ manifestVersion="$("${jqCommand}" -j ".version" < ./extension/manifest.json)"
45
+ [ $version != $manifestVersion ] && echo "Manifest version and changelog version are not same. Please verify again." && exit 1
46
47
# Export version for future tasks
48
export version
0 commit comments