关闭
duanshanduo3363 2016-04-11 00:10
浏览 181
已采纳

Git Post-Push hook替换build文件夹

I'm working with an AngularJS app that I am hosting on Azure as a Web App.

My repository is on Bitbucket, connected as a deployment slot. I use TortoiseGit as a Windows shell for commit/pull/push. Grunt is my task runner.


Problem: I am not managing to replace the build folder after a push has been made. This is what is being exposed on Azure (see picture):

enter image description here


What I've tried:


Currently my solution is that after a push I'm building using grunt build and connecting through FTP with FileZilla and replacing build folder manually.

How can I automate this?

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dongli7236 2016-04-12 04:21
    关注

    I solved this by refactor my initial batch script that calls:

    npm install 
    bower install 
    grunt clean 
    grunt build
    winscp.com /script=azureBuildScript.txt
    

    and my azureBuildScript.txt:

    option batch abort
    option confirm off
    open ftps://xxx\xxx:xxx@waws-prod-db3-023.ftp.azurewebsites.windows.net/
    cd site/wwwroot
    rmdir %existingFolder%
    put %myFolder%
    exit
    

    This is being triggered Post-Push as a Hook job in TortoiseGit.

    It turns out ftp.exe is restricted regarding passive mode and can't interpret a session whilst WinSCP does this with ease.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部