CI: fix server build added missing quotes (#29780)
fix server build added missing quotes <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Improved the handling of user information in the automated server build process to ensure compatibility with values containing spaces. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
parent
33b073dd30
commit
c902d1977a
4
.github/workflows/server-build.yml
vendored
4
.github/workflows/server-build.yml
vendored
|
|
@ -240,8 +240,8 @@ jobs:
|
|||
tar -czvf server.jar dist/
|
||||
mkdir cacherepo
|
||||
cd ./cacherepo
|
||||
git config --global user.email $gituseremail
|
||||
git config --global user.name $gituser
|
||||
git config --global user.email "$gituseremail"
|
||||
git config --global user.name "$gituser"
|
||||
git clone https://$cachetoken@github.com/appsmithorg/cibuildcache.git
|
||||
git lfs install
|
||||
cd testcacherepo/
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user