This commit is contained in:
sobolevn 2022-06-05 11:24:44 +03:00
parent 9f04fe7593
commit 0cf33e3254
No known key found for this signature in database
GPG Key ID: FF672D568AE3C73E
2 changed files with 10 additions and 4 deletions

View File

@ -14,8 +14,11 @@ source "$SECRETS_PROJECT_ROOT/utils/build-utils.sh"
readonly BASE_API_URL='https://gitsecret.jfrog.io/artifactory'
# This folder should contain just one `.dev` file:
readonly DEB_FILE_LOCATION="$(locate_release 'deb')"
readonly DEB_FILE_NAME="$(basename "$DEB_FILE_LOCATION")"
readonly DEB_FILE_LOCATION
DEB_FILE_LOCATION="$(locate_release 'deb')"
readonly DEB_FILE_NAME
DEB_FILE_NAME="$(basename "$DEB_FILE_LOCATION")"
curl -sS \

View File

@ -14,8 +14,11 @@ source "$SECRETS_PROJECT_ROOT/utils/build-utils.sh"
readonly BASE_API_URL='https://gitsecret.jfrog.io/artifactory'
# This folder should contain just one `.rpm` file:
readonly RPM_FILE_LOCATION="$(locate_release 'rpm')"
readonly RPM_FILE_NAME="$(basename "$RPM_FILE_LOCATION")"
readonly RPM_FILE_LOCATION
RPM_FILE_LOCATION="$(locate_release 'rpm')"
readonly RPM_FILE_NAME
RPM_FILE_NAME="$(basename "$RPM_FILE_LOCATION")"
curl -sS \