Parcourir la source

scad workflow run apt update before install

Thomas Buck il y a 2 mois
Parent
révision
33861a1c7e
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3
    1
      .github/workflows/scad.yml

+ 3
- 1
.github/workflows/scad.yml Voir le fichier

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: |

Chargement…
Annuler
Enregistrer