From cd2d84d496158450ec25be0109016c7c70112132 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Sun, 29 Jun 2025 10:18:50 -0700 Subject: [PATCH] fix: need to check out the branch, not the tag (#1430) This should have been done in https://github.com/openai/codex/pull/1423. --- codex-rs/scripts/create_github_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/scripts/create_github_release.sh b/codex-rs/scripts/create_github_release.sh index b08dab60..19903c1a 100755 --- a/codex-rs/scripts/create_github_release.sh +++ b/codex-rs/scripts/create_github_release.sh @@ -30,7 +30,7 @@ fi TAG="rust-v$VERSION" RELEASE_BRANCH="release/$TAG" -git checkout -b "$TAG" +git checkout -b "$RELEASE_BRANCH" perl -i -pe "s/^version = \".*\"/version = \"$VERSION\"/" Cargo.toml git add Cargo.toml git commit -m "Release $VERSION"