Skip to content

Commit

Permalink
Fix update php repo GHA. (#11741)
Browse files Browse the repository at this point in the history
Environment variables need to be accessed with the "env." prefix.

PiperOrigin-RevId: 506147851
  • Loading branch information
deannagarcia committed Feb 1, 2023
1 parent 0d1e95e commit 81cd7f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update_php_repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 81cd7f0

Please sign in to comment.