Skip to content

Commit

Permalink
Fix path to cli artifacts and output file now that container volume m…
Browse files Browse the repository at this point in the history
…ounts are removed (#2019)
  • Loading branch information
ddelnano authored Sep 11, 2024
1 parent 4528883 commit a68986a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/cli_build_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,24 @@ if [[ ! "$release_tag" == *"-"* ]]; then
# Create rpm package.
fpm \
-f \
-p "/image/${pkg_prefix}.rpm" \
-p "${pkg_prefix}.rpm" \
-s dir \
-t rpm \
-n pixie-px \
-v "${release_tag}" \
--prefix /usr/local/bin \
px
"${binary_dir}/px"

# Create deb package.
fpm \
-f \
-p "/image/${pkg_prefix}.deb" \
-p "${pkg_prefix}.deb" \
-s dir \
-t deb \
-n pixie-px \
-v "${release_tag}" \
--prefix /usr/local/bin \
px
"${binary_dir}/px"

# TODO(james): Add push to docker hub/quay.io.
fi
Expand Down

0 comments on commit a68986a

Please sign in to comment.