Skip to content

Commit

Permalink
explicitly installing nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolanrensen committed Sep 26, 2024
1 parent 1d43224 commit baed09f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build docs

on:
# Specify to run a workflow manually from the Actions tab on GitHub.
workflow_dispatch:
workflow_dispatch: ""

# Gives the workflow permissions to clone the repo and create a page deployment
permissions:
Expand Down Expand Up @@ -31,7 +31,9 @@ jobs:
- name: Prepare for build
run: |
apt-get update
apt-get install -y zip
apt-get install -y zip curl
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
apt-get install -y nodejs
mkdir -p artifacts
- name: Build docs # and include sitemap.xml TODO: uncomment when sitemap.xml is available
run: |
Expand Down

0 comments on commit baed09f

Please sign in to comment.