action netlify cli
2.0.0
Esta acción permite acciones arbitrarias con la CLI de Netlify.
Esta acción es un reemplazo para netlify/actions/cli@master
sin la capa acoplable que incurre en un tiempo de ejecución adicional de 30 a 50 segundos (lo que parece resultar en un tiempo de implementación promedio de ~1m 30s).
Esta acción generalmente se completa en menos de un minuto (y en el mejor de los casos, 30 segundos).
NETLIFY_AUTH_TOKEN
: obligatorio El token que se utilizará para la autenticación. Obtenga uno con la interfaz de usuarioNETLIFY_SITE_ID
: ID del sitio API opcional del sitio en el que desea trabajar. Obténgalo desde la interfaz de usuario. Los siguientes resultados estarán disponibles en un paso que utilice esta acción:
NETLIFY_OUTPUT
, la salida estándar completa de la ejecución del comando netlify
on : [push]
jobs :
publish :
runs-on : ubuntu-latest
steps :
# build your site for deployment... in this case the `public` folder is being deployed
- name : Publish
uses : South-Paw/action-netlify-cli@v2
id : netlify
with :
# be sure to escape any double quotes with a backslash
args : ' deploy --json --dir "./public" --message "draft [${{ github.sha }}]" '
env :
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
# and access outputs in other steps with ${{ steps.netlify.outputs.OUTPUT_ID }}
on : [push]
jobs :
publish :
runs-on : ubuntu-latest
steps :
- name : Start deployment
uses : bobheadxi/deployments@v1
id : deployment
with :
env : production
step : start
# ... steps to build your site for deployment
- name : Deploy to Netlify
uses : South-Paw/action-netlify-cli@v2
id : netlify
with :
# note that the --json flag has been passed so we can parse outputs
args : deploy --json --prod --dir './public' --message 'production [${{ github.sha }}]'
env :
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
- name : Finish deployment
uses : bobheadxi/deployments@v1
if : always()
with :
env : ${{ steps.deployment.outputs.env }}
step : finish
status : ${{ job.status }}
deployment_id : ${{ steps.deployment.outputs.deployment_id }}
env_url : ${{ fromJson(steps.netlify.outputs.NETLIFY_OUTPUT).url }}
--json
bandera on : [push]
jobs :
publish :
runs-on : ubuntu-latest
steps :
# ... steps to build your site for deployment
- name : Deploy to Netlify
uses : South-Paw/action-netlify-cli@v2
id : netlify
with :
# note that the --json flag has been passed so we can parse outputs
args : deploy --json --prod --dir './public' --message 'production [${{ github.sha }}]'
env :
NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
# You can parse the `NETLIFY_OUTPUT` output with `fromJson` function for the following information:
- name : Parse NETLIFY_OUTPUT JSON
run : |
echo "The URL where the logs from the deploy can be found"
echo "${{ fromJson(steps.netlify.outputs.NETLIFY_OUTPUT).logs }}"
echo ""
echo "the URL of the draft site that Netlify provides"
echo "${{ fromJson(steps.netlify.outputs.NETLIFY_OUTPUT).deploy_url }}"
echo ""
echo "the URL of the "real" site, set only if `--prod` was passed"
echo "${{ fromJson(steps.netlify.outputs.NETLIFY_OUTPUT).url }}"
Si encuentra alguno, infórmelo aquí para que puedan ser aplastados.
MIT, consulte el archivo de LICENCIA.