mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
13 lines
284 B
Bash
13 lines
284 B
Bash
#!/bin/bash -e
|
|
|
|
VERSION=$(cat VERSION)
|
|
|
|
# Clear the VERSION_SUFFIX
|
|
cat /dev/null > VERSION_SUFFIX
|
|
|
|
# Update packaging, e.g., version, changelog, etc.
|
|
./scripts/prepare-packaging.sh
|
|
|
|
# Commit the changes
|
|
git commit -m "Release ${VERSION}" .
|
|
git tag v$VERSION -a -m "Release ${VERSION}" |