diff --git a/.drone.yml b/.drone.yml index c48c9614..0929c124 100644 --- a/.drone.yml +++ b/.drone.yml @@ -130,8 +130,7 @@ steps: # TODO When we update Flutter Container to 3.19 migrate these calls... - apt update - apt install -y jq openssh-client ca-certificates curl - - cd deploy - - ../upload-releases.sh cwtch-`cat ../VERSION`.apk application/vnd.android.package-archive + - ./upload-releases.sh deploy/cwtch-`cat VERSION`.apk application/vnd.android.package-archive cwtch-`cat VERSION`.apk - name: deploy-buildfiles image: kroniak/ssh-client diff --git a/upload-releases.sh b/upload-releases.sh index c568d630..4feab9e3 100755 --- a/upload-releases.sh +++ b/upload-releases.sh @@ -10,7 +10,7 @@ if [ "$RELEASEID" = "null" ]; then fi -URL="https://git.openprivacy.ca/api/v1/repos/$DRONE_REPO/releases/$RELEASEID/assets?name=$1" +URL="https://git.openprivacy.ca/api/v1/repos/$DRONE_REPO/releases/$RELEASEID/assets?name=$3" FILE="@$1" RESULT=$(curl -o /dev/null -w "%{http_code}" -X POST -H "Authorization: token $GOGS_ACCOUNT_TOKEN" -H "accept: application/json" -H "Content-Type: multipart/form-data" -F "attachment=$FILE;type=$2" $URL)