浏览代码

scad workflow run apt update before install

Thomas Buck 1年前
父节点
当前提交
33861a1c7e
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      .github/workflows/scad.yml

+ 3
- 1
.github/workflows/scad.yml 查看文件

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

正在加载...
取消
保存