Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions xtasks/release-plz
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
#MISE description="Release with release-plz"
set -euxo pipefail

# Ensure this script is only run in GitHub Actions
if [[ -z ${GITHUB_ACTIONS:-} ]]; then
echo "Error: This script must be run in GitHub Actions"
echo "The release-plz script should only be executed in the CI/CD pipeline"
exit 1
fi

git config user.name mise-en-dev
git config user.email release@mise.jdx.dev

Expand Down
Loading