mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-21 17:43:23 +01:00
Add workflow
This commit is contained in:
parent
312aaaeeaa
commit
844c30604b
1 changed files with 18 additions and 0 deletions
|
@ -31,3 +31,21 @@ jobs:
|
|||
environment: "production"
|
||||
wranglerVersion: '1.5.0'
|
||||
workingDirectory: 'test'
|
||||
- name: Publish app (fails with missing auth)
|
||||
uses: signalnerve/wrangler-action@1.1.0
|
||||
with:
|
||||
environment: "production"
|
||||
wranglerVersion: '1.5.0'
|
||||
continue-on-error: true
|
||||
- name: Publish app (fails with api key, missing email)
|
||||
uses: signalnerve/wrangler-action@1.1.0
|
||||
with:
|
||||
apiKey: ${{ secrets.CLOUDFLARE_API_KEY }}
|
||||
environment: "production"
|
||||
continue-on-error: true
|
||||
- name: Publish app (fails with email, missing api key)
|
||||
uses: signalnerve/wrangler-action@1.1.0
|
||||
with:
|
||||
email: ${{ secrets.CLOUDFLARE_EMAIL }}
|
||||
environment: "production"
|
||||
continue-on-error: true
|
Loading…
Reference in a new issue