Fix update php repo GHA.

Environment variables need to be accessed with the "env." prefix.

PiperOrigin-RevId: 506147851
pull/11732/head
Deanna Garcia 2 years ago committed by Copybara-Service
parent 59cfc2f165
commit 3d16caf322
  1. 6
      .github/workflows/update_php_repo.yml

@ -42,7 +42,7 @@ jobs:
rm -rf protobuf
- name: Push Changes
run: |
git commit -a -m "$VERSION sync"
git commit -a -m "${{ env.VERSION }} sync"
git push --force origin master
git tag -a $VERSION_TAG -m "Tag release $VERSION_TAG"
git push origin $VERSION_TAG
git tag -a ${{ env.VERSION_TAG }} -m "Tag release ${{ env.VERSION_TAG }}"
git push origin ${{ env.VERSION_TAG }}

Loading…
Cancel
Save