Skip to content

Commit 7d01e3b

Browse files
committed
Fix: Build the container based -docker release name
This is expected to allow release the debug container image independent of the supportpkg krew plugin
1 parent ebc3ab8 commit 7d01e3b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/docker-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ on:
1010
env:
1111
RELEASE_VERSION: ${{ github.event.release.tag_name }}
1212
jobs:
13-
build:
13+
run-on-release:
14+
if: endsWith(github.event.release.tag_name, '-docker')
1415
runs-on: ubuntu-latest
1516
steps:
17+
- name: Starting Release Build
18+
run: echo "Starting Release Build for ${{ github.event.release.tag_name }}"
19+
1620
- name: Checkout code
1721
uses: actions/[email protected]
1822

0 commit comments

Comments
 (0)