Skip to content

Commit

Permalink
Actions: Update output tar name to look for
Browse files Browse the repository at this point in the history
Since we are now appending the BSP version in image's/tar's names,
Github Actions also needs to be updated to work with a file which has
the BSP version included in it. So update Github Actions to work with
the new naming scheme.

Signed-off-by: Suhaas Joshi <[email protected]>
  • Loading branch information
jsuhaas22 committed Nov 12, 2024
1 parent 87d6e67 commit abd6236
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
run: |
pip3 install toml-cli
builds=($(toml get builds --toml-path ./builds.toml | tr -d "[],'"))
for i in "${!builds[@]}" ; do
distro_codename=($(toml get ${builds[$i]}.distro_codename --toml-path ./builds.toml))
bsp_version=($(toml get ${distro_codename}.bsp_version --toml-path ./configs/bsp_sources.toml))
builds[$i]="${builds[$i]}-${bsp_version}"
done
output_string="["
for build in ${builds[@]}
do
Expand Down

0 comments on commit abd6236

Please sign in to comment.