fix(action): artifact is gzip compressed #9
1 changed files with 9 additions and 2 deletions
11
action.yml
11
action.yml
|
@ -79,15 +79,22 @@ runs:
|
||||||
}
|
}
|
||||||
# USAGE: has_report <RUN_URL>
|
# USAGE: has_report <RUN_URL>
|
||||||
has_report() {
|
has_report() {
|
||||||
http_code=$(curl -X 'GET' -o /dev/null --silent -Iw '%{http_code}' "$1/artifacts/$ARTIFACT_NAME")
|
http_code=$(curl -X 'GET' -o /dev/null --silent -Iw '%{http_code}' \
|
||||||
|
-H "Authorization: token $GITHUB_TOKEN" \
|
||||||
|
"$1/artifacts/$ARTIFACT_NAME")
|
||||||
test "$http_code" = '200'
|
test "$http_code" = '200'
|
||||||
}
|
}
|
||||||
|
|
||||||
# If we have a previous report compare against it
|
# If we have a previous report compare against it
|
||||||
if [ "$JOB_NAME" ] && [ "$HEAD_BRANCH" ]; then
|
if [ "$JOB_NAME" ] && [ "$HEAD_BRANCH" ]; then
|
||||||
url=$(base_report_url)
|
url=$(base_report_url)
|
||||||
|
echo "Found previous run at: $url"
|
||||||
if has_report "$url"; then
|
if has_report "$url"; then
|
||||||
curl -X 'GET' -o old-report.json "$url/artifacts/$ARTIFACT_NAME"
|
curl -X 'GET' \
|
||||||
|
-H "Authorization: token $GITHUB_TOKEN" \
|
||||||
|
"$url/artifacts/$ARTIFACT_NAME" |
|
||||||
|
gunzip > old-report.json
|
||||||
|
echo 'Found previous report'
|
||||||
"$GITHUB_ACTION_PATH/comment_on_pr.sh" report.json old-report.json
|
"$GITHUB_ACTION_PATH/comment_on_pr.sh" report.json old-report.json
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue