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 87f1af9 commit 46958c2Copy full SHA for 46958c2
.github/workflows/cpack.yml
@@ -112,7 +112,9 @@ jobs:
112
run: |
113
set -o pipefail
114
set -o xtrace
115
- echo "key=${KEY_PREFIX}-config_hash-${CONFIG_HASH}-action_hash-${ACTION_HASH}" | tee -a $GITHUB_OUTPUT
+ ACTION_HASH_SHORT=${ACTION_HASH:0:8}
116
+ CONFIG_HASH_SHORT=${CONFIG_HASH:0:8}
117
+ echo "key=${KEY_PREFIX}-vcpkg_json=${CONFIG_HASH_SHORT}-build_action=${ACTION_HASH_SHORT}" | tee -a $GITHUB_OUTPUT
118
119
- name: Create a Vcpkg Cache with the Defined Key for this Matrix Job
120
id: vcpkg_cache
0 commit comments