Skip to content

Commit 9503c5e

Browse files
committed
Fix file name mismatch in deb workflow: convert hyphens to underscores
1 parent dd98d4e commit 9503c5e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/deb.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ jobs:
139139
140140
arch = "x64" if "${{ matrix.os }}" == "linux-x86_64" else "arm64"
141141
profile = f"linux_{arch}"
142-
os_key = "${{ matrix.os }}"
142+
# Convert os name from hyphens to underscores to match file naming convention
143+
os_key = "${{ matrix.os }}".replace("-", "_")
143144
144145
subprocess.run([
145146
"conan", "install", "--update", "--install-folder", "conan",

0 commit comments

Comments
 (0)