James Walker
731c1bae07
All checks were successful
continuous-integration/drone/push Build is passing
28 lines
659 B
YAML
28 lines
659 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: jekyll/jekyll
|
|
environment:
|
|
JEKYLL_ENV: production
|
|
commands:
|
|
- chown -R jekyll:jekyll /drone/src
|
|
- npm install
|
|
- bundle install
|
|
- bundle exec jekyll build
|
|
- name: publish
|
|
image: walkah.dev/walkah/drone-ipfs-cluster
|
|
settings:
|
|
path: /drone/src/_site
|
|
domain: walkah.net
|
|
cluster_host: /ip4/100.95.167.126/tcp/9094
|
|
cluster_user: walkah
|
|
cluster_password:
|
|
from_secret: IPFS_CLUSTER_PASSWORD
|
|
cluster_args: -f
|
|
cf_email: walkah@walkah.net
|
|
cf_apikey:
|
|
from_secret: CLOUDFLARE_APIKEY
|