diff --git a/.github/workflows/main.user.js_version_update.yaml b/.github/workflows/main.user.js_version_update.yaml index ad70655ef..a82d05f4c 100644 --- a/.github/workflows/main.user.js_version_update.yaml +++ b/.github/workflows/main.user.js_version_update.yaml @@ -27,6 +27,11 @@ jobs: latest_tag_commit_sha=$(git rev-list --tags --max-count=1) latest_tag_commit_timestamp=$(git show -s --format=%ct $latest_tag_commit_sha) + echo "release_commit_sha=$release_commit_sha" + echo "release_commit_timestamp=$release_commit_timestamp" + echo "latest_tag_commit_sha=$latest_tag_commit_sha" + echo "latest_tag_commit_timestamp=$latest_tag_commit_timestamp" + if [ $release_commit_timestamp -gt $latest_tag_commit_timestamp ]; then ref=$release_commit_sha else