Skip to content

Commit 3c8668c

Browse files
committed
fix(ci): specify shell for Cargo dependencies hash step in release-gui workflow
Updated the release-gui workflow to explicitly set the shell to bash for the step that calculates the Cargo dependencies hash. This change ensures compatibility and consistency in the execution environment.
1 parent fdceafd commit 3c8668c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/release-gui.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868

6969
- name: Get Cargo deps hash (exclude root package version for stable cache key)
7070
id: cargo-deps-hash
71+
shell: bash
7172
run: |
7273
# Normalise root package version in Cargo.lock so version bumps don't invalidate cache
7374
HASH=$(awk '/^name = "memory-sync-gui"$/{print; getline; sub(/version = ".*"/, "version = \"0.0.0\""); print; next} 1' gui/src-tauri/Cargo.lock | sha256sum | cut -d' ' -f1)

0 commit comments

Comments
 (0)