Sam Therapy
55a607abd6
All checks were successful
continuous-integration/drone/push Build is passing
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: Build & Deploy
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
steps:
|
|
- name: Clone
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
recursive: true
|
|
|
|
- name: Build site
|
|
image: denoland/deno
|
|
commands:
|
|
- deno task build
|
|
depends_on:
|
|
- "Clone"
|
|
|
|
- name: Deploy to Deno Deploy
|
|
image: git.froth.zone/sam/drone-deno-deploy
|
|
environment:
|
|
DENO_DEPLOY_TOKEN:
|
|
from_secret: DENO_DEPLOY_TOKEN
|
|
settings:
|
|
project: samme
|
|
entrypoint: server.ts
|
|
production: true
|
|
include: dist,server.ts,deno.json
|
|
import_map: deno.json
|
|
depends_on:
|
|
- "Build site"
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|
|
|
|
- name: Push to Pages
|
|
image: plugins/gh-pages
|
|
settings:
|
|
remote_url:
|
|
from_secret: URL
|
|
password:
|
|
from_secret: PASS
|
|
target_branch: pages
|
|
pages_directory: dist
|
|
copy_contents: true
|
|
user_name: Sam Therapy
|
|
user_email: sam@samtherapy.net
|
|
depends_on:
|
|
- "Build site"
|
|
when:
|
|
branch:
|
|
- master
|
|
event:
|
|
- push
|