We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72e58c6 commit 2d48cbfCopy full SHA for 2d48cbf
.github/workflows/npm-publish-unstable.yml
@@ -70,10 +70,10 @@ jobs:
70
- name: npm publish
71
run: |
72
# set unstable version value
73
- unstable_tag=$(echo "unstable.$(date --utc +%Y%m%d%H%M%S)")
+ unstable_tag="unstable.$(date --utc +%Y%m%d%H%M%S)"
74
latest=$(npm view @elastic/elasticsearch --json | jq -r '.["dist-tags"].latest')
75
next=$(npx -y 'semver@^7.7.0' -i minor "$latest")
76
- unstable_version=$(echo "$next-$unstable_tag")
+ unstable_version="$next-$unstable_tag"
77
78
# overwrite package.json with unstable version value
79
mv package.json package.json.bak
0 commit comments