forked from vieter-v/vieter
Switched to cross-platform curl-based solution
parent
0700eb16fb
commit
81a0881454
|
@ -36,8 +36,24 @@ pipeline:
|
||||||
image: 'alpine:latest'
|
image: 'alpine:latest'
|
||||||
secrets: [ s3_username, s3_password ]
|
secrets: [ s3_username, s3_password ]
|
||||||
commands:
|
commands:
|
||||||
# https://min.io/download#/linux
|
# We should just add this to the builder image instead
|
||||||
- wget https://dl.min.io/client/mc/release/linux-amd64/mc
|
- apk add curl openssl
|
||||||
- chmod +x mc
|
|
||||||
- ./mc alias set s3 https://s3.rustybever.be "$S3_USERNAME" "$S3_PASSWORD"
|
# https://gist.github.com/JustinTimperio/7c7115f87b775618637d67ac911e595f
|
||||||
- ./mc cp pvieter "s3/vieter/commits/$CI_COMMIT_SHA/vieter-$(echo '${PLATFORM}' | sed 's:/:-:')"
|
- export URL=s3.rustybever.be
|
||||||
|
- export OBJ_PATH="/vieter/commits/$CI_COMMIT_SHA/vieter-$(echo '${PLATFORM}' | sed 's:/:-:')"
|
||||||
|
- export DATE=`date -R --utc`
|
||||||
|
- export CONTENT_TYPE='application/zstd'
|
||||||
|
- export SIG_STRING="PUT\n\n${CONTENT_TYPE}\n${DATE}\n${OBJ_PATH}"
|
||||||
|
- export SIGNATURE=`echo -en ${SIG_STRING} | openssl sha1 -hmac ${S3_PASSWORD} -binary | base64`
|
||||||
|
|
||||||
|
- >
|
||||||
|
curl \
|
||||||
|
--silent \
|
||||||
|
-XPUT \
|
||||||
|
-T pvieter \
|
||||||
|
-H "Host: $URL" \
|
||||||
|
-H "Date: ${DATE}" \
|
||||||
|
-H "Content-Type: ${CONTENT_TYPE}" \
|
||||||
|
-H "Authorization: AWS ${S3_USERNAME}:${SIGNATURE}" \
|
||||||
|
https://$URL${OBJ_PATH}
|
||||||
|
|
Loading…
Reference in New Issue