From 9dc51e1b817c4a4cc451467ad50f7712b18d0903 Mon Sep 17 00:00:00 2001 From: Andrew Rodriguez Date: Thu, 22 Jun 2023 13:28:01 -0700 Subject: [PATCH] add commit step before push --- scripts/publish_prod.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index a1bd5596..fe7bda5d 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -86,6 +86,7 @@ echo "Publishing to https://pypi.org/project/datadog-lambda/" echo echo 'Publishing updates to github' +git commit pyproject.toml -m "Bump version to ${$NEW_VERSION}" git push origin main git tag "v$LAYER_VERSION" git push origin "refs/tags/v$LAYER_VERSION"