You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,9 +55,9 @@ The `secrets` and `env` portion of the workflow **must** be configured before th
55
55
|`FOLDER`| The folder in your repository that you want to deploy. If your build script compiles into a directory named `build` you'd put it here. |`env`|**Yes**|
56
56
|`BASE_BRANCH`| The base branch of your repository which you'd like to checkout prior to deploying. This defaults to `master`. |`env`|**No**|
57
57
|`BUILD_SCRIPT`| If you require a build script to compile your code prior to pushing it you can add the script here. The Docker container which powers the action runs Node which means `npm` commands are valid. If you're using a static site generator such as Jekyll I'd suggest compiling the code prior to pushing it to your base branch. |`env`|**No**|
58
-
|`COMMIT_NAME`| Used to sign the commit, this should be your name. If not provided it will default to `username@users.noreply.github.com`|`env`|**No**|
59
-
|`COMMIT_EMAIL`| Used to sign the commit, this should be your email. If not provided it will default to your username. |`env`|**No**|
60
58
|`CNAME`| If you're using a [custom domain](https://help.github.com/en/articles/using-a-custom-domain-with-github-pages), you will need to add the domain name to the `CNAME` environment variable. If you don't do this GitHub will wipe out your domain configuration after each deploy. This value will look something like this: `jives.dev`. |`env`|**No**|
59
+
|`COMMIT_EMAIL`| Used to sign the commit, this should be your email. If not provided it will default to your username. |`env`|**No**|
60
+
|`COMMIT_NAME`| Used to sign the commit, this should be your name. If not provided it will default to `username@users.noreply.github.com`|`env`|**No**|
61
61
62
62
With the action correctly configured you should see something similar to this in your GitHub actions workflow editor.
0 commit comments