We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b209342 commit 3ce97e2Copy full SHA for 3ce97e2
.github/workflows/release.yml
@@ -50,10 +50,11 @@ jobs:
50
- name: Should we push this image to a public registry?
51
run: |
52
if [ "${{ startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main') }}" = "true" ]; then
53
- echo "REGISTRY=$DEFAULT_REGISTRY" >> $GITHUB_ENV
+ REGISTRY=$DEFAULT_REGISTRY
54
else
55
- echo "REGISTRY=localhost:5000" >> $GITHUB_ENV
+ REGISTRY=localhost:5000
56
fi
57
+ echo "REGISTRY=$REGISTRY" >> $GITHUB_ENV
58
echo "Publishing to $REGISTRY"
59
60
# versioneer requires the full git history for non-tags
0 commit comments