Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created January 30, 2019 15:04
Show Gist options
  • Save seogi1004/2b93ceb3ff2a3c543c388da305828631 to your computer and use it in GitHub Desktop.
Save seogi1004/2b93ceb3ff2a3c543c388da305828631 to your computer and use it in GitHub Desktop.
- stage: deploy
language: java
jdk: openjdk8
script:
- POM_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
after_success:
- ls -all ./dist
- sshpass -V
- export SSHPASS=$SSH_PASSWORD
# SSH 포트가 22가 아니라면 -P 옵션을 줄것
- sshpass -e scp -r -oStrictHostKeyChecking=no ./dist/vuejs-springboot-starter-$POM_VERSION.jar [email protected]:/opt/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment