CI サーバーで、Github で管理している構成ファイルをフェッチして、多くのジョブ間で共有できるようにしたいと考えています。curl でこのファイルを取得しようとしていますが、これらのアプローチはどちらも失敗します (404 が返されます)。
# As advised by the oAuth docs
curl -H 'Authorization: token the_token' -L -o setup.sh https://raw.github.com/org/repo/file
# The url of the raw file after clicking to view it
curl -L https://raw.github.com/org/repo/file?login=username&token=the_token