A (WIP) docker container for deploying to Deno Deploy
Find a file
Renovate Bot e4854913e9
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update denoland/deno docker tag to v1.29.1 (#6)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| denoland/deno | final | patch | `1.29.0` -> `1.29.1` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNS4xIiwidXBkYXRlZEluVmVyIjoiMzQuMjUuMSJ9-->

Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
Reviewed-on: sam/drone-deno-deploy#6
Co-authored-by: Renovate Bot <renovate-bot@noreply.git.froth.zone>
Co-committed-by: Renovate Bot <renovate-bot@noreply.git.froth.zone>
2022-12-17 16:24:50 +00: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 [SKIP CI] fix: drone please only push on master 2022-12-01 16:22:50 +01:00
.gitmodules Fix mistakes 2022-10-10 23:42:13 +02:00
Dockerfile chore(deps): update denoland/deno docker tag to v1.29.1 (#6) 2022-12-17 16:24:50 +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 I am stupid 2022-12-06 19:47:58 +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