Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Initial commit
  • Loading branch information
Kristian Freeman committed Oct 7, 2019
0 parents commit 94b86fb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
@@ -0,0 +1,3 @@
FROM alpine:3.10
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
zero-config [cloudflare workers](https://workers.cloudflare.com) application deployment using [wrangler](https://github.com/cloudflare/wrangler) and [github actions](https://github.com/actions)
5 changes: 5 additions & 0 deletions deploy.yml
@@ -0,0 +1,5 @@
name: 'Cloudflare Workers Deploy'
description: 'Cloudflare Workers Deploy'
runs:
using: 'docker'
image: 'Dockerfile'
6 changes: 6 additions & 0 deletions entrypoint.sh
@@ -0,0 +1,6 @@
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
nvm install latest
npm i
npm i @cloudflare/wrangler -g
wrangler whoami
wrangler publish

0 comments on commit 94b86fb

Please sign in to comment.