diff --git a/.drone.yml b/.drone.yml index 5282f78..a045123 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,12 +8,20 @@ name: default steps: - name: markdown image: pandoc/core + volumes: + - name: shared + path: /shared commands: - - pandoc --standalone --output=index.html README.md + - pandoc --standalone --output=index.html --metadata title="SMT Readme" README.md + - cp index.html /shared/index.html - name: build image: golang + volumes: + - name: shared + path: /shared commands: + - cp /shared/index.html . - sh ./.drone.sh # Copy binary to test server