mirror of
https://github.com/hneemann/Digital.git
synced 2025-08-03 09:47:37 -04:00
13 lines
553 B
YAML
13 lines
553 B
YAML
# This is a sample build configuration for Maven.
|
|
# Only use spaces to indent your .yml configuration.
|
|
# -----
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
image: maven:3.3.3
|
|
|
|
pipelines:
|
|
default:
|
|
- step:
|
|
script: # Modify the commands below to build your repository.
|
|
- mvn --version
|
|
- mvn clean install
|
|
- curl -X POST "https://${BB_AUTH_STRING}@api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"target/Digital.zip" |