A (WIP) docker container for deploying to Deno Deploy
Go to file
Renovate Bot 173c0b5153
ci / docker (push) Failing after 29s Details
chore(deps): update denoland/deno docker tag to v1.42.4
2024-04-16 03:00:34 +00:00
.github chore(deps): update docker/build-push-action action to v5 2024-03-27 20:23:39 +00:00
Dockerfile chore(deps): update denoland/deno docker tag to v1.42.4 2024-04-16 03:00:34 +00:00
LICENSE Initial commit, still very TODO 2022-10-10 20:07:18 +02:00
action.yaml change - to _ 2024-03-28 01:27:32 +01:00
deno.json Attempt to create a GitHub Action 2024-03-27 20:41:36 +01:00
renovate.json chore(deps): add renovate.json 2022-10-11 02:00:18 +00:00
run.ts change - to _ 2024-03-28 01:27:32 +01:00

.github/README.md

Drone Plugin to Deploy to Deno Deploy

Built with the Deno Standard Library

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

This is built on top of deployctl.

Example Usage (Drone)

- 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