A (WIP) docker container for deploying to Deno Deploy
Go to file
Renovate Bot e8d7ba7b29
continuous-integration/drone/push Build is passing Details
chore(deps): add renovate.json
2022-10-11 02:00:18 +00:00
example@d5fe3ee49e ci: Add test pipeline 2022-10-11 03:15:04 +02:00
.drone.yml ci: Add test pipeline 2022-10-11 03:15:04 +02:00
.gitmodules Fix mistakes 2022-10-10 23:42:13 +02:00
Dockerfile Remove test file 2022-10-11 03:16:46 +02:00
LICENSE Initial commit, still very TODO 2022-10-10 20:07:18 +02:00
README.md Add CI 2022-10-10 22:04:36 +02:00
renovate.json chore(deps): add renovate.json 2022-10-11 02:00:18 +00:00
run.sh Fix mistakes 2022-10-10 23:42:13 +02:00

README.md

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