Browse Source

scad workflow run apt update before install

Thomas Buck 7 months ago
parent
commit
33861a1c7e
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      .github/workflows/scad.yml

+ 3
- 1
.github/workflows/scad.yml View File

20
         run: git submodule update --init
20
         run: git submodule update --init
21
 
21
 
22
       - name: Install dependencies
22
       - name: Install dependencies
23
-        run: sudo apt-get install -y openscad zip
23
+        run: |
24
+          sudo apt update
25
+          sudo apt-get install -y openscad zip
24
 
26
 
25
       - name: Render STLs
27
       - name: Render STLs
26
         run: |
28
         run: |

Loading…
Cancel
Save