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 6fd75f0 commit ebf3148Copy full SHA for ebf3148
bb.edn
@@ -26,11 +26,11 @@
26
(def tag (release-tag))
27
(def latest-hash (latest-hash))
28
(def release-hash (release-hash))
29
- (def version (cond-> tag
30
- (not= release-hash latest-hash)
31
- (str "--" latest-hash)))
32
- (def opts {:extra-env {"DAY8_RELEASE_TAG" tag
33
- "RE_COM_VERSION" version}}))
+ (def version (apply str (drop-while #{\v} tag)))
+ (def opts {:extra-env {"RE_COM_TAG" tag
+ "RE_COM_VERSION" (cond-> tag
+ (not= release-hash latest-hash)
+ (str "--" latest-hash))}}))
34
clean (let [clean-targets ["node_modules"
35
"run/resources/public/compiled_dev "
36
"run/resources/public/compiled_prod"
0 commit comments