From f25cca90edbedf4bb6846cd1d555998c3bdf98c7 Mon Sep 17 00:00:00 2001 From: Bilaal Rashid <42493384+bilaalrashid@users.noreply.github.com> Date: Tue, 12 Nov 2024 23:11:08 +0000 Subject: [PATCH 1/2] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c790e4c..15ddb2e 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,6 @@ make release-version VERSION= ``` 2. Push to the remote ``` -git push --tags +git push --follow-tags ``` 3. Create a corresponding [release](https://github.com/bilaalrashid/ReadBeeb/releases/new) on GitHub From 325212d1e228e0409dcb620c336e2e717fe7f54f Mon Sep 17 00:00:00 2001 From: Bilaal Rashid <42493384+bilaalrashid@users.noreply.github.com> Date: Tue, 12 Nov 2024 23:11:16 +0000 Subject: [PATCH 2/2] Always pull before version bumping --- bin/version-bump | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/version-bump b/bin/version-bump index 6ffb643..298e832 100755 --- a/bin/version-bump +++ b/bin/version-bump @@ -98,6 +98,9 @@ if [[ "$branch" != "master" && "$branch" != "main" ]]; then exit 1 fi +# Make sure we are up to date with remote +git pull + # Increment the build number agvtool bump new_build=$(agvtool vers -terse)