Skip to content

Commit

Permalink
Add caching for Conan dependencies in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
royshil committed Dec 19, 2024
1 parent fa635fa commit 4a0117c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,14 @@ jobs:
"pluginName=${ProductName}" >> $env:GITHUB_OUTPUT
"pluginVersion=${ProductVersion}" >> $env:GITHUB_OUTPUT
- uses: actions/cache@v4
id: conan-cache
with:
path: C:\Users\runneradmin\.conan2\
key: ${{ runner.os }}-conan-cache-${{ needs.check-event.outputs.config }}
restore-keys: |
${{ runner.os }}-conan-cache-
- name: Build Plugin 🧱
uses: ./.github/actions/build-plugin
with:
Expand Down

0 comments on commit 4a0117c

Please sign in to comment.