-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Support `apiToken` as an authentication method - Deprecates `apiKey` and `email`, making them optional parameters and encouraging `apiToken` usage in build logs - Support `wranglerVersion` for installing a specific Wrangler version for your build - Per #7, support for `workingDirectory` to run `wrangler-action` in a specific directory in your repo - Adds a test Workers project under the `test` directory. This is used in the repo's new set of workflows (see below) - Adds a GitHub Action workflow that: - Lints `entrypoint.sh` to ensure that the shell script looks correct - Runs the action with various config options to ensure future pushes don't introduce regressions
- Loading branch information
1 parent
2360296
commit 9e7e2ec
Showing
11 changed files
with
270 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
on: push | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Lint shell script | ||
uses: azohra/shell-linter@v0.1.0 | ||
with: | ||
path: "entrypoint.sh" | ||
- name: Publish app with api token | ||
uses: signalnerve/wrangler-action@1.1.0 | ||
with: | ||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
environment: "production" | ||
workingDirectory: 'test' | ||
- name: Publish app with legacy credentials | ||
uses: signalnerve/wrangler-action@1.1.0 | ||
with: | ||
apiKey: ${{ secrets.CLOUDFLARE_API_KEY }} | ||
email: ${{ secrets.CLOUDFLARE_EMAIL }} | ||
environment: "production" | ||
workingDirectory: 'test' | ||
- name: Publish app with hardcoded Wrangler version | ||
uses: signalnerve/wrangler-action@1.1.0 | ||
with: | ||
apiKey: ${{ secrets.CLOUDFLARE_API_KEY }} | ||
email: ${{ secrets.CLOUDFLARE_EMAIL }} | ||
environment: "production" | ||
wranglerVersion: '1.5.0' | ||
workingDirectory: 'test' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<h1>My Static Site Test</h1> | ||
<p>This is the content of my site</p> | ||
|
||
<footer> | ||
And this is my footer | ||
</footer> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { getAssetFromKV, mapRequestToAsset } from '@cloudflare/kv-asset-handler' | ||
|
||
/** | ||
* The DEBUG flag will do two things that help during development: | ||
* 1. we will skip caching on the edge, which makes it easier to | ||
* debug. | ||
* 2. we will return an error message on exception in your Response rather | ||
* than the default 404.html page. | ||
*/ | ||
const DEBUG = false | ||
|
||
addEventListener('fetch', event => { | ||
try { | ||
event.respondWith(handleEvent(event)) | ||
} catch (e) { | ||
if (DEBUG) { | ||
return event.respondWith( | ||
new Response(e.message || e.toString(), { | ||
status: 500, | ||
}), | ||
) | ||
} | ||
event.respondWith(new Response('Internal Error', { status: 500 })) | ||
} | ||
}) | ||
|
||
async function handleEvent(event) { | ||
const url = new URL(event.request.url) | ||
let options = {} | ||
|
||
/** | ||
* You can add custom logic to how we fetch your assets | ||
* by configuring the function `mapRequestToAsset` | ||
*/ | ||
// options.mapRequestToAsset = handlePrefix(/^\/docs/) | ||
|
||
try { | ||
if (DEBUG) { | ||
// customize caching | ||
options.cacheControl = { | ||
bypassCache: true, | ||
} | ||
} | ||
return await getAssetFromKV(event, options) | ||
} catch (e) { | ||
// if an error is thrown try to serve the asset at 404.html | ||
if (!DEBUG) { | ||
try { | ||
let notFoundResponse = await getAssetFromKV(event, { | ||
mapRequestToAsset: req => new Request(`${new URL(req.url).origin}/404.html`, req), | ||
}) | ||
|
||
return new Response(notFoundResponse.body, { ...notFoundResponse, status: 404 }) | ||
} catch (e) {} | ||
} | ||
|
||
return new Response(e.message || e.toString(), { status: 500 }) | ||
} | ||
} | ||
|
||
/** | ||
* Here's one example of how to modify a request to | ||
* remove a specific prefix, in this case `/docs` from | ||
* the url. This can be useful if you are deploying to a | ||
* route on a zone, or if you only want your static content | ||
* to exist at a specific path. | ||
*/ | ||
function handlePrefix(prefix) { | ||
return request => { | ||
// compute the default (e.g. / -> index.html) | ||
let defaultAssetKey = mapRequestToAsset(request) | ||
let url = new URL(defaultAssetKey.url) | ||
|
||
// strip the prefix from the path for lookup | ||
url.pathname = url.pathname.replace(prefix, '/') | ||
|
||
// inherit all other props from the default request | ||
return new Request(url.toString(), defaultAssetKey) | ||
} | ||
} |
Oops, something went wrong.