Guest User

Untitled

a guest
Oct 31st, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. release:
  2. stage: release
  3. tags:
  4. - some_runner
  5. script:
  6. - git config --global user.email "name@mail.com"
  7. - git config --global user.name "usename"
  8. - mvn release:prepare -Dpassword=$SECRET -Duser=$USER -DscmCommentPrefix="[ci skip]"
  9. - mvn release:perform
  10. only:
  11. - master
  12.  
  13. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.3.2:prepare (default-cli) on prosome_project: Unable to tag SCM
  14. [ERROR] Provider message:
  15. [ERROR] The git-push command failed.
  16. [ERROR] Command output:
  17. [ERROR] Host key verification failed.
  18. [ERROR] fatal: Could not read from remote repository.
  19. [ERROR]
  20. [ERROR] Please make sure you have the correct access rights
  21. [ERROR] and the repository exists.
  22. [ERROR]
  23. [ERROR] -> [Help 1]
  24. [ERROR]
  25. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  26. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  27. [ERROR]
  28. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  29. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
Add Comment
Please, Sign In to add comment