Skip to content

Commit

Permalink
Merge pull request #7 from hiddenshadow21/HRINT-3327
Browse files Browse the repository at this point in the history
HRINT-3327 Match arch name with api.hibernatingrhinos.com
  • Loading branch information
gregolsky authored Sep 4, 2023
2 parents 5da54bd + 93b24b0 commit 7b08331
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,22 @@ jobs:
set -e
set -x
case "${{ matrix.arch }}" in
"arm32v7")
arch="arm32"
;;
"arm64v8")
arch="arm64"
;;
"x64")
arch="x64"
;;
*)
echo "Unsupported architecture"
exit 1
;;
esac
PACKAGES_DIST_DIR=ravendb/scripts/linux/pkg/deb/dist
if [ "${{ env.IS_NIGHTLY }}" == "true" ]; then
Expand All @@ -166,7 +182,7 @@ jobs:
export S3UPLOADER="./current/s3uploader.sh"
"$S3UPLOADER" \
--category "RavenDB for Ubuntu ${{ env.UBUNTU_VERSION }} ${{ matrix.arch }} DEB" \
--category "RavenDB for Ubuntu ${{ env.UBUNTU_VERSION }} ${arch} DEB" \
--filename "${PACKAGES_DIST_DIR}/${{ env.UBUNTU_VERSION }}/ravendb_${RAVENDB_VERSION}-0_ubuntu.${{ env.UBUNTU_VERSION }}_${{ env.DEB_ARCH }}.deb"
env:
RAVENDB_VERSION: ${{ inputs.version }}
Expand Down

0 comments on commit 7b08331

Please sign in to comment.