Explorar el Código

scad workflow run apt update before install

Thomas Buck hace 7 meses
padre
commit
33861a1c7e
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      .github/workflows/scad.yml

+ 3
- 1
.github/workflows/scad.yml Ver fichero

@@ -20,7 +20,9 @@ jobs:
20 20
         run: git submodule update --init
21 21
 
22 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 27
       - name: Render STLs
26 28
         run: |

Loading…
Cancelar
Guardar