Skip to content

Commit 10659e5

Browse files
committed
Fix install node step in workflow [skip ci]
1 parent f636151 commit 10659e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_and_deploy_sphinx_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
2626
- name: Install node
2727
run: |
28-
apt-get update
29-
apt-get -y install curl
28+
sudo apt-get update
29+
sudo apt-get -y install curl
3030
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
31-
apt-get install -y nodejs
31+
sudo apt-get install -y nodejs
3232
3333
- name: Setup pages
3434
uses: actions/configure-pages@v1

0 commit comments

Comments
 (0)