fix variable name in release workflow (#59135)

Follow up to https://github.com/vercel/next.js/pull/59134
This commit is contained in:
Zack Tanner 2023-11-30 15:19:46 -08:00 committed by GitHub
parent 3159fa197b
commit 511867ceec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ jobs:
- name: Check if new commits since last tag
run: |
if [ "$LATEST_TAG" = "$LATEST_COMMIT" ]; then
if [ "$LATEST_TAG_COMMIT" = "$LATEST_COMMIT" ]; then
echo "No new commits. Exiting..."
exit 1
fi