wada811 / blog

wada811's blog
https://github.com/wada811/blog/issues
Apache License 2.0
6 stars 0 forks source link

bitrise.yml を Bitrise API でダウンロードする #31

Open wada811 opened 5 years ago

wada811 commented 5 years ago

Why

bitrise.yml をダウンロードしたい。

What

Bitrise API で bitrise.yml をダウンロードする。

How

curl -sS -o $FILE_NAME --create-dirs \
    -H "Authorization: token $BITRISE_PERSONAL_ACCESS_TOKEN" \
    "https://api.bitrise.io/v0.1/apps/$APP_SLUG/bitrise.yml"

Ref

RikH81 commented 5 years ago

🕶