Skip to content

Commit be1985a

Browse files
committed
fix workflow file
1 parent c68fbb1 commit be1985a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ jobs:
164164
id: image-base-tag
165165
run: |
166166
set -euo pipefail
167-
echo "tag=ghcr.io/coder/coder-base:${{ steps.version.outputs.version }}" >> $GITHUB_OUTPUT
167+
echo "tag=$(CODER_IMAGE_BASE=ghcr.io/coder/coder-base ./scripts/image_tag.sh)" >> $GITHUB_OUTPUT
168168
exit 0
169169
if [[ "${CODER_RELEASE:-}" != *t* ]] || [[ "${CODER_DRY_RUN:-}" == *t* ]]; then
170170
# Empty value means use the default and avoid building a fresh one.
171171
echo "tag=" >> $GITHUB_OUTPUT
172172
else
173-
echo "tag=ghcr.io/coder/coder-base:${{ steps.version.outputs.version }}" >> $GITHUB_OUTPUT
173+
echo "tag=$(CODER_IMAGE_BASE=ghcr.io/coder/coder-base ./scripts/image_tag.sh)" >> $GITHUB_OUTPUT
174174
fi
175175
176176
- name: Create empty base-build-context directory

0 commit comments

Comments
 (0)