mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-10 18:05:44 +02:00
fix
Signed-off-by: Abhradeep Chakraborty <abhradeep@dragonflydb.io>
This commit is contained in:
parent
2c0953bc9c
commit
9349b25019
1 changed files with 2 additions and 2 deletions
4
.github/workflows/docker-dev-release.yml
vendored
4
.github/workflows/docker-dev-release.yml
vendored
|
@ -112,7 +112,7 @@ jobs:
|
|||
|
||||
# Extract version from the image
|
||||
echo "Extracting version from image..."
|
||||
VERSION=$(docker run --rm ${image_tag} dragonfly --version | head -n1 | cut -d' ' -f2)
|
||||
VERSION=$(docker run --rm ${image_tag} dragonfly --version | head -n1 | cut -d' ' -f2 | cut -d'-' -f1)
|
||||
echo "Dragonfly version: $VERSION"
|
||||
|
||||
echo "Extracting binary from ${image_tag} for ${{ matrix.os.arch }}"
|
||||
|
@ -128,7 +128,7 @@ jobs:
|
|||
|
||||
# Upload to GCS
|
||||
echo "Uploading ${tar_name} to GCS"
|
||||
gcloud storage cp ${tar_name} gs://stagingv2-data-plane-dragonfly-artifacts/dragonfly/$VERSION --recursive
|
||||
gcloud storage cp ${tar_name} gs://${{ secrets.ARTIFACT_BUCKET }}/dragonfly/$VERSION --recursive
|
||||
|
||||
# Cleanup
|
||||
rm -f dragonfly ${tar_name}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue