ci(release): Fix post-release script (#22693)
The post-release script had 2 failures:
1. https://github.com/getsentry/publish/runs/1559745946?check_suite_focus=true#step:6:305 -- `$RELEASE_VERSION` was available inside the unified GitHub action earlier but when run stand-alone by Craft, this is not available. Luckily Craft already sets `CRAFT_NEW_VERSION` when running the script instead so we can use that.
2. https://github.com/getsentry/publish/runs/1559745946?check_suite_focus=true#step:6:293 -- This is because, even if we are already on master, the final branch merge is done on GitHub directly via the API so the local copy becomes stale. We need to run `git pull` before making any new commits.