42
All checks were successful
Deploy Production / Deploy to Staging (push) Has been skipped

This commit is contained in:
Alex Shevchuk
2025-08-19 17:11:24 +03:00
parent 6ec4f3579f
commit 2d79aa7437

View File

@@ -35,11 +35,11 @@ jobs:
id: get_versions
env:
REGISTRY: hub.docker.com
REPO: test-deploy
REPO: test_deploy
run: |
TAGS=$(wget -q -O - "https://$REGISTRY/v2/namespaces/molvaapp/repositories/$REPO/tags?page_size=100" | jq -r '.results[].name' | tr '\n' ',')
echo "version_options=latest,${TAGS%,}" >> $GITHUB_OUTPUT
echo "version_options=${TAGS%,}" >> $GITHUB_OUTPUT
echo "Tags: $TAGS"
echo "Version options: $version_options"