-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 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,32 @@ | ||
- name: Netlify Deploy | ||
# You may pin to the exact commit or the version. | ||
# uses: jsmrcaga/action-netlify-deploy@0f0941d68f55a7268a8258b2a367190f17116a39 | ||
uses: jsmrcaga/[email protected] | ||
with: | ||
# Auth token to use with netlify | ||
NETLIFY_AUTH_TOKEN: # default is | ||
# Your Netlify site id | ||
NETLIFY_SITE_ID: # default is | ||
# Should the site be deployed to production? | ||
NETLIFY_DEPLOY_TO_PROD: # optional | ||
# A deploy message | ||
NETLIFY_DEPLOY_MESSAGE: # optional, default is | ||
# When provided, prints more debug info in NETLIFY_OUTPUT | ||
debug: # optional, default is | ||
# Directory where built files are stored | ||
build_directory: # default is build | ||
# Directory where built files are stored | ||
functions_directory: # optional, default is | ||
# Command to install dependencies | ||
install_command: # optional, default is | ||
# Path to netlify CLI binary | ||
netlify_path: # optional, default is netlify | ||
# Command to build static website | ||
build_command: # optional, default is npm run build | ||
# Deployment Subdomain name | ||
deploy_alias: # optional, default is | ||
# In monorepos, package to deploy | ||
monorepo_package: # optional, default is | ||
# Any optional extra flags added to Netlify deploy command | ||
command_extra_flags: # optional, default is | ||
|