Hi,
I am wondering if sentry could look up commits of my current release automatically, if my release name is exactly the tag name of commit?
I’ve wrote such script for doing that:
# get the version name to create tag
VERSION=v$(node scripts/get-version.js)
git tag -a $VERSION
git push origin $VERSION
# sentry part
yarn sentry-cli releases new "$VERSION"
yarn sentry-cli releases set-commits --auto "$VERSION"
yarn sentry-cli releases files "$VERSION" upload-sourcemaps dist --no-rewrite
yarn sentry-cli releases finalize "$VERSION"
But I get below error mail after running the script:
Unable to Fetch Commits
We were unable to fetch the commit log for your release ( *VERSION* ) due to the following error:
GitHub returned a 404 Not Found error. If this repository exists, ensure that your installation has permission to access this repository