From 13fa61f7d9a4be326812a77a4148472961415776 Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Fri, 24 Nov 2017 22:46:23 +0100 Subject: [PATCH] CI: Only push binaries for develop branch builds ... for now. Syntax was confusing Travis CI, AppVeyor is reporting 401, so lets see if this change at least fixes Travis. If this doesn't work, it might be that @raysan5's token is required. --- .travis.yml | 4 +--- appveyor.yml | 23 ++++++++++------------- 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 40817fba3..d71249707 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,6 +54,4 @@ deploy: skip_cleanup: true on: repo: raysan5/raylib - branch: - - develop - - master + branch: develop diff --git a/appveyor.yml b/appveyor.yml index 2363bd3f8..bfda4ec38 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -52,16 +52,13 @@ artifacts: - path: 'build\*.zip' deploy: - description: 'Automatic build by CI' - provider: GitHub - auth_token: - secure: lqkfPGZPK828Mmopbicrng08QaaQXAshp0a9E3bMXt8+hpA8vCfDAT3jgU8kaSsW - artifact: /.*\.zip/ - draft: false - prerelease: false - force_update: true - on: - branch: - - master - - develop - appveyor_repo_tag: true # deploy on tag push only + - provider: GitHub + auth_token: + secure: lqkfPGZPK828Mmopbicrng08QaaQXAshp0a9E3bMXt8+hpA8vCfDAT3jgU8kaSsW + artifact: /.*\.zip/ + draft: false + prerelease: false + force_update: true + on: + branch: develop + appveyor_repo_tag: true # deploy on tag push only