Carbon/.drone.yml
Bad 70649e4f5e
All checks were successful
continuous-integration/drone/push Build is passing
Revert "Fix artifact uploads(hopefully)"
This reverts commit 01b4b69706.
2020-10-20 10:47:14 +02:00

34 lines
870 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: node:current-alpine3.12
commands:
- npm install -D
- npm run rebuild
#Todo make this into a separate container
- name: package
image: alpine
commands:
- apk update
- apk add zip git
- echo FILENAME=`date +%Y%m%d%H%m`-`git rev-parse --short HEAD`.zip >> environment
- source environment
- zip -r $FILENAME build
- name: b2
image: tianon/backblaze-b2:2
environment:
BUCKET: carbon-artifacts
ACCOUNT:
from_secret: b2_account_id
KEY:
from_secret: b2_application_key
commands:
- source environment
- b2 authorize-account $ACCOUNT $KEY
- b2 upload-file $BUCKET $FILENAME $FILENAME
- echo Build artifacts avaliable at `b2 make-friendly-url $BUCKET $FILENAME`