ci: remove stray GITREF env from Docker interop workflow (#5119)

This commit is contained in:
Marten Seemann
2025-05-05 18:56:10 +08:00
committed by GitHub
parent 2082d2c6b9
commit 11ccfff388

View File

@@ -36,10 +36,8 @@ jobs:
run: |
if [[ $GITHUB_REF == refs/tags/* ]]; then
echo "tag=${GITHUB_REF#refs/tags/}" | tee -a $GITHUB_OUTPUT;
echo "gitref=${GITHUB_REF#refs/tags/}" | tee -a $GITHUB_OUTPUT;
else
echo 'tag=latest' | tee -a $GITHUB_OUTPUT;
echo 'gitref=${{ github.sha }}' | tee -a $GITHUB_OUTPUT;
fi
- uses: docker/build-push-action@v6
with: