You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Give GitHub API a moment to index the new release
164
+
sleep 5
165
+
166
+
# Try to get the release ID from the draft release we just created
167
+
if RELEASE_ID=$(gh api repos/${{ github.repository }}/releases/tags/${{ steps.timestamp.outputs.value }}-chart-v${{ env.CHART_VERSION }} --jq '.id' 2>/dev/null); then
168
+
echo "✅ Found release ID via tag: $RELEASE_ID"
169
+
else
170
+
echo "⚠️ Release not found via tag, searching in all releases..."
0 commit comments