美文网首页
Fir Xcode9 一键打包上传

Fir Xcode9 一键打包上传

作者: lionnner | 来源:发表于2017-12-28 14:36 被阅读27次

    利用已经安装好的 fir-cli 打包上传

    Debug包

    #!/bin/sh
    out_path=`date "+%Y-%m-%d-%H-%M-%S"`
    
    if [ ! -d "./fir_build_ipa" ]
    then
    mkdir ./fir_build_ipa
    fi
    
    mkdir ./fir_build_ipa/$out_path
    fir b ./ -w -S [SchemeName] -p -T [用户在 fir.im 上的 api_token] -C Debug -c 发布Debug版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
    

    Release包

    #!/bin/sh
    out_path=`date "+%Y-%m-%d-%H-%M-%S"`
    
    if [ ! -d "./fir_build_ipa" ]
    then
    mkdir ./fir_build_ipa
    fi
    
    mkdir ./fir_build_ipa/$out_path
    fir b ./ -w -S [SchemeName] -p -T [用户在 fir.im 上的 api_token] -C Release -c 发布Release版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
    

    fir publish里面的 -c, [--changelog=CHANGELOG] # Set changelog 可以自定义发布时的changelog 优化如下:

    #!/bin/sh
    out_path=`date "+%Y-%m-%d-%H-%M-%S"`
    
    if [ ! -d "./fir_build_ipa" ]
    then
    mkdir ./fir_build_ipa
    fi
    
    mkdir ./fir_build_ipa/$out_path
    
    if [ $# -eq 0 ]
    then
    fir b ./ -w -S DaBoLuo -p -T [用户在 fir.im 上的 api_token] -C Debug -c 发布Debug版本 PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
    else
    a=$*
    echo $a
    fir b ./ -w -S DaBoLuo -p -T [用户在 fir.im 上的 api_token] -C Debug -c $a PROVISIONING_PROFILE_VALUE="Automatic" DEVELOPMENT_TEAM=[TeamID] -o ./fir_build_ipa/$out_path
    fi
    

    相关文章

      网友评论

          本文标题:Fir Xcode9 一键打包上传

          本文链接:https://www.haomeiwen.com/subject/nsvkuxtx.html