We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2efec5 commit 2436e5dCopy full SHA for 2436e5d
action.yml
@@ -41,8 +41,7 @@ runs:
41
echo "Created temp directory: ${tmp_dir}"
42
tmp_zip="${tmp_dir}/devbox.zip"
43
echo "Downloading devbox from URL: $DEVBOX_USE_VERSION"
44
- echo curl --fail --location --output "${tmp_zip}" "${DEVBOX_USE_VERSION}"
45
- curl --fail --location --output "${tmp_zip}" "${DEVBOX_USE_VERSION}"
+ curl --fail --location --header "Authorization: Bearer ${{ github.token }}" --output "${tmp_zip}" "${DEVBOX_USE_VERSION}"
46
echo "Download complete, zip file size: $(ls -lh ${tmp_zip} | awk '{print $5}')"
47
echo "Extracting zip file to ${tmp_dir}"
48
unzip -q "${tmp_zip}" -d "${tmp_dir}"
0 commit comments