Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Mar 27, 2024
1 parent 916f5f4 commit d27858a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ jobs:
sleep 10
wget --no-check-certificate -p https://127.0.0.1 -O /dev/null
printf "\n# Installing npm\n"
sudo apt update && sudo apt install npm
sudo apt install npm
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
NODE_MAJOR=20
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
sudo apt update
sudo apt install nodejs
printf "\n# Installing redoc-cli\n"
sudo npm install -g redoc-cli
printf "\n# Generating manual\n"
Expand Down

0 comments on commit d27858a

Please sign in to comment.