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
echo "Done. semantic-release will create v1.0.0-beta.1 from scratch."
111
-
else
112
-
echo "Tag v1.0.0-beta.1 does not exist; semantic-release will create it."
113
-
fi
114
-
115
98
- name: Dry run mode notice
116
99
if: github.event.inputs.dry_run == 'true'
117
100
run: |
@@ -152,7 +135,6 @@ jobs:
152
135
npx semantic-release --dry-run 2>&1 | tee semantic-release.log || true
153
136
grep -oE "The next release version is [^[:space:]]+" semantic-release.log 2>/dev/null | sed 's/The next release version is //' > next-version.txt || echo "" > next-version.txt
154
137
else
155
-
# Tag + note are prepared in "Prepare v1.0.0-beta.1 for semantic-release" step
0 commit comments