https://github.com/samtherapy/deno-deploy
[MIRROR] A Drone/Woodpecker CI plugin to use Deno Deploy
https://github.com/samtherapy/deno-deploy
deno deno-deploy drone-ci drone-plugin woodpecker-ci woodpecker-plugin
Last synced: about 2 months ago
JSON representation
[MIRROR] A Drone/Woodpecker CI plugin to use Deno Deploy
- Host: GitHub
- URL: https://github.com/samtherapy/deno-deploy
- Owner: SamTherapy
- License: apache-2.0
- Created: 2023-01-19T20:29:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2026-04-22T14:01:13.000Z (2 months ago)
- Last Synced: 2026-04-22T16:04:22.717Z (2 months ago)
- Topics: deno, deno-deploy, drone-ci, drone-plugin, woodpecker-ci, woodpecker-plugin
- Language: TypeScript
- Homepage: https://git.froth.zone/actions/deno-deploy
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
- License: LICENSE
Awesome Lists containing this project
README
# Drone Plugin to Deploy to Deno Deploy
[](https://deno.land/std)
A [Drone](https://drone.io) and [Woodpecker](https://woodpecker-ci.org/) plugin
to deploy a JavaScript/TypeScript application to
[Deno Deploy](https://deno.com/deploy).
This is built on top of [deployctl](https://deno.com/deploy/docs/deployctl).
## Example Usage (Drone)
```yaml
- 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
```