Skip to content

Commit 13fd88e

Browse files
Only push to stable branch if is-stable is selected
Co-authored-by: ted chang <[email protected]>
1 parent 3936598 commit 13fd88e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ jobs:
7474
- name: Image Push
7575
run: |
7676
podman push quay.io/${{ github.event.inputs.quay-organization }}/notebook:v${{ github.event.inputs.release-version }}
77+
78+
- name: Image Push Stable
79+
if: ${{github.event.inputs.is-stable}}
80+
run: |
7781
podman push quay.io/${{ github.event.inputs.quay-organization }}/notebook:v${{ github.event.inputs.release-version }} quay.io/${{ github.event.inputs.quay-organization }}/notebook:stable
7882
7983
- name: Create Github release

0 commit comments

Comments
 (0)