mirror of
https://github.com/cloudflare/pages-action
synced 2024-12-03 16:16:09 +00:00
Release 1.5.0 (#86)
This commit is contained in:
parent
2df29b9c10
commit
f0a1cd58cd
23
README.md
23
README.md
|
@ -33,6 +33,13 @@ GitHub Action for creating Cloudflare Pages deployments, using the new [Direct U
|
||||||
directory: YOUR_ASSET_DIRECTORY
|
directory: YOUR_ASSET_DIRECTORY
|
||||||
# Optional: Enable this if you want to have GitHub Deployments triggered
|
# Optional: Enable this if you want to have GitHub Deployments triggered
|
||||||
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# Optional: Switch what branch you are publishing to.
|
||||||
|
# By default this will be the branch which triggered this workflow
|
||||||
|
branch: main
|
||||||
|
# Optional: Change the working directory
|
||||||
|
workingDirectory: my-site
|
||||||
|
# Optional: Change the Wrangler version, allows you to point to a specific version or a tag such as `beta`
|
||||||
|
wranglerVersion: '3'
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Replace `YOUR_ACCOUNT_ID`, `YOUR_PROJECT_NAME` and `YOUR_ASSET_DIRECTORY` with the appropriate values to your Pages project.
|
1. Replace `YOUR_ACCOUNT_ID`, `YOUR_PROJECT_NAME` and `YOUR_ASSET_DIRECTORY` with the appropriate values to your Pages project.
|
||||||
|
@ -69,6 +76,22 @@ manually by adding the argument `branch: YOUR_BRANCH_NAME`.
|
||||||
|
|
||||||
By default Wrangler will run in the root package directory. If your app lives in a monorepo and you want to run Wrangler from its directory, add `workingDirectory: YOUR_PACKAGE_DIRECTORY`.
|
By default Wrangler will run in the root package directory. If your app lives in a monorepo and you want to run Wrangler from its directory, add `workingDirectory: YOUR_PACKAGE_DIRECTORY`.
|
||||||
|
|
||||||
|
### Wrangler v3
|
||||||
|
|
||||||
|
You can use the newly released [Wrangler v3](https://blog.cloudflare.com/wrangler3/) with the `wranglerVersion` property.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: Publish to Cloudflare Pages
|
||||||
|
uses: cloudflare/pages-action@v1
|
||||||
|
with:
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: YOUR_ACCOUNT_ID
|
||||||
|
projectName: YOUR_PROJECT_NAME
|
||||||
|
directory: YOUR_ASSET_DIRECTORY
|
||||||
|
# Enable Wrangler v3
|
||||||
|
wranglerVersion: '3'
|
||||||
|
```
|
||||||
|
|
||||||
## Outputs
|
## Outputs
|
||||||
|
|
||||||
| Name | Description |
|
| Name | Description |
|
||||||
|
|
|
@ -28,7 +28,7 @@ inputs:
|
||||||
wranglerVersion:
|
wranglerVersion:
|
||||||
description: "The version of Wrangler to use"
|
description: "The version of Wrangler to use"
|
||||||
required: false
|
required: false
|
||||||
default: 2
|
default: "2"
|
||||||
runs:
|
runs:
|
||||||
using: "node16"
|
using: "node16"
|
||||||
main: "index.js"
|
main: "index.js"
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "pages-action",
|
"name": "pages-action",
|
||||||
"version": "1.3.0",
|
"version": "1.5.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "pages-action",
|
"name": "pages-action",
|
||||||
"version": "1.3.0",
|
"version": "1.5.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pages-action",
|
"name": "pages-action",
|
||||||
"version": "1.3.0",
|
"version": "1.5.0",
|
||||||
"description": "Publish to Cloudflare Pages",
|
"description": "Publish to Cloudflare Pages",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue