We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bb05f5 commit 0361133Copy full SHA for 0361133
.github/workflows/docker.yml
@@ -84,13 +84,13 @@ jobs:
84
85
if [[ "$ref" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
86
version="${ref#v}"
87
- echo "DOCKER_TAGS=stellar/cli:${version},stellar/cli:latest" >> $GITHUB_ENV
+ echo "DOCKER_TAGS=stellar/stellar-cli:${version},stellar/stellar-cli:latest" >> $GITHUB_ENV
88
elif [[ "${{ github.event_name }}" == "release" ]]; then
89
echo "::error::Release tag '${ref}' is not a valid version tag (expected vX.Y.Z)."
90
exit 1
91
else
92
commit="$(git rev-parse HEAD)"
93
- echo "DOCKER_TAGS=stellar/cli:${commit}" >> $GITHUB_ENV
+ echo "DOCKER_TAGS=stellar/stellar-cli:${commit}" >> $GITHUB_ENV
94
fi
95
96
- name: Build and push
0 commit comments