mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
8 lines
294 B
Bash
Executable File
8 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
# Bring master back to nightlies after merge from release branch
|
|
git checkout master && git pull --rebase
|
|
./scripts/bump-version.sh '' 'nightly'
|
|
git diff --quiet || git commit -anm $'build: Set master version to nightly\n\n#skip-changelog' && git pull --rebase && git push
|