mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-05 19:59:30 +00:00
26fc2cde5d
Upgrade rust-toolchain Upgrade Tantivy Warning: tantivy now use a different file format, search index may need to be deleted and recreated to work as intended try to run compile twice in a row because sometime oomk is evil
4 lines
179 B
Bash
Executable file
4 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
[ "$1" = "" ] && echo "you must provide one argument, the build version" && exit 1
|
|
docker build -t plumeorg/plume-buildenv:$1 .
|
|
docker push plumeorg/plume-buildenv:$1
|