mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-09 20:51:41 +01:00
* Add reusable build workflow Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Switch to composite action Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Make checkout happier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Hoist upload artifact Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * copy pasta Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Description Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Simplify Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix passing env Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
12 lines
434 B
Bash
Executable File
12 lines
434 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Echoes a version based on the git hashes of the element-web & js-sdk checkouts, for the case where
|
|
# these dependencies are git checkouts.
|
|
|
|
set -e
|
|
|
|
# Since the deps are fetched from git & linked, we can rev-parse
|
|
JSSDK_SHA=$(git -C node_modules/matrix-js-sdk rev-parse --short=12 HEAD)
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
|
echo "$VECTOR_SHA-js-$JSSDK_SHA"
|