diff --git a/.ci/deploy.sh b/.ci/deploy.sh index 481d35f10..486cbd9e5 100755 --- a/.ci/deploy.sh +++ b/.ci/deploy.sh @@ -9,5 +9,8 @@ cd .. mv qb64 "${dirname}" tar --create --auto-compress --file ${filename} --exclude-from=${dirname}/.ci/common-exclusion.list --exclude-from=${dirname}/.ci/$OS-exclusion.list ${dirname} aws --endpoint-url ${S3_ENDPOINT} s3api put-object --bucket ${BUCKET} --body ${filename} --acl public-read --key development-builds/${filename} +if [[ $OS == lnx ]]; then + aws --endpoint-url ${S3_ENDPOINT} s3api put-object --bucket ${BUCKET} --body ${dirname}/CHANGELOG.md --acl public-read --key development-builds/changelog.md +fi # Move it back so the post-job cleanup doesn't complain mv "${dirname}" qb64