actions netlify
v3.0.0
用於部署的github動作
部署URL會對您的拉請請求發表評論並提交評論!
GitHub部署也得到了支持!
# .github/workflows/netlify.yml
name : Build and Deploy to Netlify
on :
push :
pull_request :
jobs :
build :
runs-on : ubuntu-22.04
steps :
- uses : actions/checkout@v4
# ( Build to ./dist or other directory... )
- name : Deploy to Netlify
uses : nwtgck/[email protected]
with :
publish-dir : ' ./dist '
production-branch : master
github-token : ${{ secrets.GITHUB_TOKEN }}
deploy-message : " Deploy from GitHub Actions "
enable-pull-request-comment : false
enable-commit-comment : true
overwrites-pull-request-comment : true
env :
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes : 1
publish-dir
(eg "dist", "_site")NETLIFY_AUTH_TOKEN
: Personal access tokens > New access tokenNETLIFY_SITE_ID
: team page > your site > Settings > Site details > Site information > API IDNETLIFY_SITE_ID
.production-branch
(eg "master")production-deploy
: Deploy as Netlify production deploy (default: false)github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message
A custom deploy message to see on Netlify deployment (eg ${{ github.event.pull_request.title }}
)enable-pull-request-comment: true
Comment on pull request (default: true)enable-commit-comment: true
Comment on GitHub commit (default: true)enable-commit-status: true
GitHub commit status (default: true)overwrites-pull-request-comment: true
Overwrites comment on pull request (default: true)netlify-config-path: ./netlify.toml
Path to netlify.toml
(default: undefined)functions-dir
Netlify functions output directory (default: undefined)alias
Specifies the prefix for the deployment URL, must not have uppercase or special characters (default: Netlify build ID)alias: ${{ github.head_ref }}
replicates the branch deploy prefixalias: deploy-preview-${{ github.event.number }}
replicates the deploy preview prefixenable-github-deployment
Whether or not to deploy to GitHub (default: true)github-deployment-environment
Environment name of GitHub Deploymentsgithub-deployment-description
Description of the GitHub Deploymentfails-without-credentials
Fails if no credentials provided (default: false)All paths (eg, publish-dir
, netlify-config-path
, functions-dir
) are relative to the project's root or absolute paths.
deploy-url
A deployment URL generated by Netlify npm ci
npm run all