Skip to content

Commit

Permalink
Updating github-config
Browse files Browse the repository at this point in the history
  • Loading branch information
paketo-bot committed Jan 7, 2023
1 parent dcc0c6d commit fb2aacb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/update-dependencies-from-metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ jobs:
- name: Download upstream tarball (if not compiled)
if: ${{ matrix.includes.uri != '' && needs.get-compile-and-test.outputs.should-test == 'true' }}
run: |
curl ${{ matrix.includes.uri }} --silent --location --output ${{ steps.make-outputdir.outputs.outputdir }}/dependency.tgz
curl ${{ matrix.includes.uri }} \
--fail-with-body \
--show-error \
--silent \
--location \
--output ${{ steps.make-outputdir.outputs.outputdir }}/dependency.tgz
# Test the dependency tarball if:
# (1) dependency testing code is present in the buildpack directory
Expand Down
2 changes: 2 additions & 0 deletions scripts/.util/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ function util::tools::jam::install() {

util::print::title "Installing jam ${version}"
curl "https://github.com/paketo-buildpacks/jam/releases/download/${version}/jam-${os}" \
--fail \
--silent \
--location \
--output "${dir}/jam"
Expand Down Expand Up @@ -101,6 +102,7 @@ function util::tools::pack::install() {

util::print::title "Installing pack ${version}"
curl "https://github.com/buildpacks/pack/releases/download/${version}/pack-${version}-${os}.tgz" \
--fail \
--silent \
--location \
--output /tmp/pack.tgz
Expand Down

0 comments on commit fb2aacb

Please sign in to comment.