From 75716baa2f41baaa08e8a5f93014cb3f0030694f Mon Sep 17 00:00:00 2001 From: Kevin O'Brien Date: Fri, 24 Jul 2020 13:31:43 -0400 Subject: [PATCH] use secret instead of token (#233) I fixed the github action that builds the prereq, but I forgot to fix this one --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fb6c420..5be1f34 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ script: after_success: - if [ $TRAVIS_PULL_REQUEST == false ] && [ $TRAVIS_BRANCH == "master" ]; then echo "Pushing new build to docker hub"; - docker login -u onnxmlirczar -p 143f1da2-332f-45a1-8587-d6cb07c13230; + docker login -u onnxmlirczar -p "$DOCKER_HUB_TOKEN"; docker push onnxmlirczar/onnx-mlir-build:$TRAVIS_CPU_ARCH; else echo "Skip pushing build";