Allow empty commits

This commit is contained in:
Aaron Dalton 2024-02-15 16:12:12 -05:00 committed by Aaron Dalton
parent 1d107e901c
commit 379a7b1002

View File

@ -40,7 +40,7 @@ jobs:
git checkout -b release/${TAG} ${TAG} git checkout -b release/${TAG} ${TAG}
git rm .github/workflows/* git rm .github/workflows/*
git commit -m "Remove existing workflows" git commit -m "Remove existing workflows"
git rev-list --no-merges --reverse main ^upstream/main | git cherry-pick --stdin git rev-list --no-merges --reverse main ^upstream/main | git cherry-pick --stdin --allow-empty
done done
for TAG in ${NEW_TAGS}; do for TAG in ${NEW_TAGS}; do
git push -u origin release/${TAG} git push -u origin release/${TAG}