Initial Bitbucket Pipelines configuration
parent
916f2ee0d9
commit
089a11dc49
@ -0,0 +1,14 @@
|
|||||||
|
# This is an example Starter pipeline configuration
|
||||||
|
# Use a skeleton to build, test and deploy using manual and parallel steps
|
||||||
|
# -----
|
||||||
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
||||||
|
|
||||||
|
pipelines:
|
||||||
|
default:
|
||||||
|
- step:
|
||||||
|
name: Build and Upload PDF
|
||||||
|
script:
|
||||||
|
- latexmk -pdf main.tex
|
||||||
|
- curl -X POST "https://${BB_AUTH_STRING}@api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"main.pdf"
|
||||||
|
artifacts:
|
||||||
|
- main.pdf
|
||||||
Loading…
Reference in New Issue