We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb00ae commit e48fc2bCopy full SHA for e48fc2b
.github/workflows/build-windows.yml
@@ -87,7 +87,17 @@ jobs:
87
shell: bash -l {0}
88
run: .github/workflows/gha_conda.sh
89
90
+ - name: Cache Dependencies
91
+ id: cache-deps
92
+ uses: actions/cache@v3
93
+ with:
94
+ path: C:\deps
95
+ key: ${{ runner.os }}-deps-${{ hashFiles('.github/workflows/gha_deps.sh') }}
96
+ restore-keys: |
97
+ ${{ runner.os }}-deps-
98
+
99
- name: Build Dependencies
100
+ if: steps.cache-deps.outputs.cache-hit != 'true'
101
102
run: .github/workflows/gha_deps.sh
103
@@ -167,4 +177,4 @@ jobs:
167
177
prerelease: true
168
178
title: "Development Build for Windows"
169
179
files: |
170
- d:/a/ShapeWorks/ShapeWorks/artifacts/*.exe
180
+ d:/a/ShapeWorks/ShapeWorks/artifacts/*.exe
0 commit comments