mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 12:06:59 +00:00
16 lines
430 B
Bash
16 lines
430 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: netlify.sh
|
|
## Desc: Installs the Netlify CLI
|
|
################################################################################
|
|
|
|
# Install the Netlify CLI
|
|
npm i -g netlify-cli
|
|
|
|
# Validate the installation
|
|
echo "Validate the installation"
|
|
if ! command -v netlify; then
|
|
echo "Netlify CLI was not installed"
|
|
exit 1
|
|
fi
|