We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fba2911 commit a7c8c43Copy full SHA for a7c8c43
ci/dockerfiles/integration/build-docker-args.sh
@@ -1,6 +1,10 @@
1
#!/usr/bin/env bash
2
set -eu -o pipefail
3
4
+# install needed dependencies so that this task can be run on a stock ubuntu image
5
+apt-get update -y
6
+apt-get install -y ca-certificates curl jq
7
+
8
bosh_cli_url="$(curl -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" -s https://api.github.com/repos/cloudfoundry/bosh-cli/releases/latest \
9
| jq -r '.assets[] | select(.name | contains ("linux-amd64")) | .browser_download_url')"
10
meta4_cli_url="$(curl -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" -s https://api.github.com/repos/dpb587/metalink/releases/latest \
0 commit comments