Use case examples:
- Automatically create staging deployments for pull requests
- Automatically deploy and alias upon pushes to master
For the usage information and a listing of the available options please take a look at the docs.
There are two ways to deploy.
Deploy the working directory to now.
docker run --rm \
-e NOW_TOKEN=xxxxxxx \
-e PLUGIN_DEPLOY_NAME=my-deployment-name \
-e PLUGIN_ALIAS=my-deployment-alias.now.sh \
-v $(pwd):$(pwd) \
-w $(pwd) \
lucap/drone-now
pipeline:
now:
image: lucap/drone-now
deploy_name: my-deployment-name
type: static
team: xxxxxxxx
directory: public
alias: my.deployment.com
secrets: [ now_token ]