Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cn337131 committed Aug 1, 2024
1 parent c527884 commit f5027e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/create-release-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ jobs:
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Update versions
run: ./cd/update_versions.sh ${RELEASE_VERSION}
run: |
./cd/update_versions.sh ${RELEASE_VERSION}
find . -name 'Dockerfile' -exec sed -i -E "s/([A-Z]+_VERSION=)[0-9]+\.[0-9]+\.[0-9]+/\1${{env.RELEASE_VERSION}}" +
find . -name '.env' -exec sed -i -E "s/([A-Z]+_VERSION=)[0-9]+\.[0-9]+\.[0-9]+/\1${{env.RELEASE_VERSION}}"
- name: Push to release branch
run: |
Expand Down

0 comments on commit f5027e0

Please sign in to comment.