Name vs File
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2024-02-26 14:41:43 -08:00
parent 37ce0bd1d2
commit 3b818e1181
Signed by: sarah
GPG Key ID: F27FD21A270837EF
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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)