mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Include react SDK SHA in filename
This commit is contained in:
parent
2a7b24e969
commit
1c267c69ac
@ -6,4 +6,5 @@ npm install
|
|||||||
(cd node_modules/matrix-react-sdk && npm run build) # npm doesn't do this when dependencies point at github.com >:(
|
(cd node_modules/matrix-react-sdk && npm run build) # npm doesn't do this when dependencies point at github.com >:(
|
||||||
npm run build # Dumps artificats to /vector
|
npm run build # Dumps artificats to /vector
|
||||||
rm vector-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
rm vector-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
||||||
tar -zcvhf vector-$GIT_COMMIT.tar.gz vector #g[z]ip, [c]reate archive, [v]erbose, [f]ilename, [h]ard-dereference (do not archive symlinks)
|
REACT_SHA=$(cd node_modules/matrix-react-sdk && git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
||||||
|
tar -zcvhf vector-$GIT_COMMIT-react-$REACT_SHA.tar.gz vector #g[z]ip, [c]reate archive, [v]erbose, [f]ilename, [h]ard-dereference (do not archive symlinks)
|
||||||
|
Loading…
Reference in New Issue
Block a user