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 4a0babc commit fb84ae8Copy full SHA for fb84ae8
1 file changed
.github/workflows/release.yaml
@@ -117,11 +117,14 @@ jobs:
117
118
# Extract repo name (component after last slash, before colon)
119
repo_name="$(echo $entry | sed 's#.*/##' | sed 's#:.*##')"
120
-
+
121
+ # Extract tag and architecture from the entry
122
+ tag_with_arch="$(echo $entry | sed 's#.*:##')"
123
124
# Extract just the architecture (after the last dash)
- arch="$(echo $material_name | sed 's#.*-##')"
- # Create attestation names (without version)
125
+ arch="$(echo $tag_with_arch | sed 's#.*-##')"
126
127
+ # Create attestation names (without version or colon)
128
container_name="${repo_name}-${arch}"
129
sbom_name="${repo_name}-sbom-${arch}"
130
0 commit comments