Files
PeerTube/scripts/openapi-peertube-version.sh
T

12 lines
475 B
Bash
Raw Normal View History

2018-11-22 15:04:14 +01:00
#!/usr/bin/env bash
# Version key/value should be on his own line
PACKAGE_VERSION=$(node -p "require('./package.json').version")
2018-11-22 15:04:14 +01:00
sed -i "s/\(^\s*\)version: .*/\1version: $PACKAGE_VERSION/" ./support/doc/api/openapi.yaml
2020-02-14 14:14:14 +01:00
# Sets the package version for libs
echo "packageVersion: $PACKAGE_VERSION" >> ./support/openapi/go.yaml
echo "artifactVersion: $PACKAGE_VERSION" >> ./support/openapi/kotlin.yaml
echo "packageVersion: $PACKAGE_VERSION" >> ./support/openapi/python.yaml