Skip to content

Commit

Permalink
Bugslat now uses parentheses for macOS
Browse files Browse the repository at this point in the history
"app_name - bundle_version (short_version)" which end up looking like
Second Life Release-7.1.9.9981869229 (7.1.9.9981869229)
  • Loading branch information
akleshchev committed Jul 23, 2024
1 parent 71fc41e commit e566cb3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
strategy:
matrix:
os: [windows-2022, macos-11]
os: [windows-2022, macos-12-xl]
addrsize: ["64"]
include:
- os: windows-2022
Expand Down
2 changes: 1 addition & 1 deletion BugsplatMac/upload-archive-cl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ curl -b "${COOKIEPATH}" -c "${COOKIEPATH}" --data-urlencode "currusername=${BUGS

echo "Uploading /tmp/${PRODUCT_NAME}.xcarchive.zip to ${UPLOAD_URL}" >> $LOG 2>&1

curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"/tmp/${PRODUCT_NAME}.xcarchive.zip" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION}" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL >> $LOG 2>&1
curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"/tmp/${PRODUCT_NAME}.xcarchive.zip" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION} (${APP_VERSION})" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL >> $LOG 2>&1
2 changes: 1 addition & 1 deletion BugsplatMac/upload-archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ curl -b "${COOKIEPATH}" -c "${COOKIEPATH}" --data-urlencode "currusername=${BUGS

echo "Uploading /tmp/${PRODUCT_NAME}.xcarchive.zip to ${UPLOAD_URL}" >> $LOG 2>&1

curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"/tmp/${PRODUCT_NAME}.xcarchive.zip" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION}" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL >> $LOG 2>&1
curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"/tmp/${PRODUCT_NAME}.xcarchive.zip" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION} (${APP_VERSION})" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL >> $LOG 2>&1
2 changes: 1 addition & 1 deletion BugsplatMac/upload-symbols.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ curl -b "${COOKIEPATH}" -c "${COOKIEPATH}" --data-urlencode "currusername=${BUGS

echo "Uploading ${FILE} to ${UPLOAD_URL}"

curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"${FILE}" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION}" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL
curl -i -b "${COOKIEPATH}" -c "${COOKIEPATH}" -F filedata=@"${FILE}" -F appName="${PRODUCT_NAME}" -F appVer="${APP_VERSION} (${APP_VERSION})" -F buildId="${UUID_CMD_OUT}" $UPLOAD_URL

0 comments on commit e566cb3

Please sign in to comment.