This is an automated email from the ASF dual-hosted git repository. randall pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git
commit 09ad1f7c8bf9b405dd2f943872e009ac99b9dc7d Author: Randall Leeds <[email protected]> AuthorDate: Sun Mar 28 16:31:10 2021 -0700 Move before_deploy block into the CI stage definition --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 215317e..6407b15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,16 +6,15 @@ node_js: - "13" - "14" -before_deploy: - - git fetch --unshallow - - git checkout master - jobs: include: - stage: deploy if: branch = master node_js: node script: skip + before_deploy: + - git fetch --unshallow + - git checkout master deploy: provider: npm edge: true
