image: maven:latest variables: PORT: "5000" build: stage: build script: - mvn compile test: stage: test script: - mvn test deploy: stage: deploy script:
- dpl --provider=heroku --app=vs3318-simplewebapp --api-key=$API_TOKEN
only: - master