A (WIP) docker container for deploying to Deno Deploy
Go to file
Sam Therapy 317e2643c8
All checks were successful
continuous-integration/drone/push Build is passing
Make permissions happy
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2024-03-24 17:13:31 +01:00
.vscode Change from shell to JS 2022-10-12 03:08:42 +02:00
example@c1d62aac00 Change from shell to JS 2022-10-12 03:08:42 +02:00
.drone.yml if this does not work I am going to murder a child 2023-02-13 18:28:53 +01:00
.gitmodules Fix mistakes 2022-10-10 23:42:13 +02:00
Dockerfile chore(deps): update denoland/deno docker tag to v1.41.3 2024-03-14 21:00:44 +00:00
LICENSE Initial commit, still very TODO 2022-10-10 20:07:18 +02:00
README.md Change from shell to JS 2022-10-12 03:08:42 +02:00
renovate.json chore(deps): add renovate.json 2022-10-11 02:00:18 +00:00
run.ts Make permissions happy 2024-03-24 17:13:31 +01:00

Drone Plugin to Deploy to Deno Deploy

Build Status

A Drone and Woodpecker plugin to deploy a JavaScript/TypeScript application to Deno Deploy.

This is built on top of deployctl.

Example Usage

- name: Deploy to Deno Deploy (prod)
  image: git.froth.zone/sam/drone-deno-deploy
  environment:
    DENO_DEPLOY_TOKEN:
      from_secret: DENO_DEPLOY_TOKEN
  settings:
    project: drone-deploy
    entrypoint: server/main.ts
    production: true
  when:
    branch:
    - master
    event:
    - push