Skip to content

Commit

Permalink
Add 'yq' to image so updated publication process can use it.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Feb 17, 2024
1 parent 04904ef commit 04c60bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow-support/make_ci_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ base_image=${1}; shift
image_name=${1}; shift

lint_deps=(shellcheck)
publish_deps=(yq)

toxenvs=(lint-action py3{11,12}-ci-action publish-action)

Expand All @@ -22,7 +23,7 @@ build_cmd_with_source() {
}

build_cmd apt-get update --quiet=2
build_cmd apt-get install --yes --quiet=2 "${lint_deps[@]}"
build_cmd apt-get install --yes --quiet=2 "${lint_deps[@]}" "${publish_deps[@]}"

for env in "${toxenvs[@]}"; do
build_cmd_with_source tox exec -e "${env}" -- pip list
Expand Down

0 comments on commit 04c60bf

Please sign in to comment.