mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
24 lines
372 B
Bash
Executable File
24 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
VERSION=$1
|
|
|
|
if [ -z "$VERSION" ]
|
|
then
|
|
echo "Need a version string."
|
|
exit 1
|
|
fi
|
|
|
|
# source root directory of paperless
|
|
PAPERLESS_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
# output directory
|
|
PAPERLESS_DIST="$PAPERLESS_ROOT/dist"
|
|
PAPERLESS_DIST_APP="$PAPERLESS_DIST/paperless-ng"
|
|
|
|
cd "$PAPERLESS_DIST_APP"
|
|
|
|
docker push "jonaswinkler/paperless-ng:$VERSION"
|