From f4d3f1996d76767efa56443e9a89f946d19aa5d7 Mon Sep 17 00:00:00 2001 From: Deanna Garcia Date: Mon, 31 Oct 2022 22:51:15 +0000 Subject: [PATCH] Address comments --- .github/workflows/update_php_repo.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_php_repo.yml b/.github/workflows/update_php_repo.yml index b9c932a6a8..2224cd209e 100644 --- a/.github/workflows/update_php_repo.yml +++ b/.github/workflows/update_php_repo.yml @@ -4,6 +4,7 @@ on: push: tags: - v[0-9]+.[0-9]+ + - v[0-9]+.[0-9]+-rc[0-9]+ jobs: update-repo: @@ -38,8 +39,7 @@ jobs: rm -rf protobuf - name: Push Changes run: | - git add . - git commit -m "$VERSION sync" + git commit -a -m "$VERSION sync" git push --force origin master git tag -a $VERSION_TAG -m "Tag release $VERSION_TAG" git push origin $VERSION_TAG