Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 30f8ab4474 | |||
| f16a765f5b | |||
| 4d919731a7 | |||
| 1df1baa8d6 |
@@ -61,7 +61,7 @@ This action is in beta, and I'm looking for folks to use it! If something goes w
|
||||
|
||||
### "I just started using Workers/Wrangler and I don't know what this is!"
|
||||
|
||||
No problem! Check out the [Quick Start guide](https://developers.cloudflare.com/workers/quickstart) in our docs, and if you hvaen't
|
||||
No problem! Check out the [Quick Start guide](https://developers.cloudflare.com/workers/quickstart) in our docs to get started. Once you have a Workers application, you may want to set it up to automatically deploy from GitHub whenever you change your project. That's where this action comes in - nice!
|
||||
|
||||
### "I'm trying to deploy my static site but it isn't working!"
|
||||
|
||||
@@ -69,7 +69,7 @@ To deploy static sites and frontend applications to Workers, check out the docum
|
||||
|
||||
Note that this action makes no assumptions about _how_ your project is built! **If you need to run a pre-publish step, like building your application, you need to specify a build step in your Workflow.** For instance, if I have an NPM command called `build`, my workflow TOML might resemble the following:
|
||||
|
||||
```toml
|
||||
```yaml
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
name: 'Cloudflare Workers Deploy'
|
||||
branding:
|
||||
icon: 'upload-cloud'
|
||||
color: 'orange'
|
||||
description: 'Cloudflare Workers Deploy'
|
||||
runs:
|
||||
using: 'docker'
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||
|
||||
mkdir -p "$HOME/.wrangler"
|
||||
chmod -R 777 "$HOME/.wrangler"
|
||||
chmod -R 770 "$HOME/.wrangler"
|
||||
|
||||
sanitize "${INPUT_EMAIL}" "email"
|
||||
sanitize "${INPUT_APIKEY}" "apiKey"
|
||||
|
||||
Reference in New Issue
Block a user