Skip to content
Merged

gha #68

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/apidoc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,21 @@ jobs:
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install --update
sudo rm -f awscliv2.zip
sudo rm -rf aws/
aws --version
echo NODE_OPTIONS="" >> $GITHUB_ENV

- name: Setup Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f #v6.1.0
with:
node-version: 16
cache: 'npm'

- name: Instalar dependencias Make
run: |
npm install --g yarn
npm install -g yarn
sudo apt-get update
sudo apt-get install -y make build-essential
sudo apt-get install -y make build-essential
make install

- name: Configure aws credentials
Expand Down
Loading