mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
Fixes the issue we had over at getsentry/publish#60. This aligns the script with [the one at getsentry/sentry](https://github.com/getsentry/sentry/blob/master/scripts/post-release.sh#L6)
11 lines
345 B
Bash
Executable File
11 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $SCRIPT_DIR/..
|
|
|
|
# Bring master back to nightlies after merge from release branch
|
|
|
|
SYMBOLICATOR_VERSION=nightly ./scripts/bump-version.sh '' 'nightly'
|
|
git diff --quiet || git commit -anm 'build: Set master version to nightly' && git pull --rebase && git push
|