We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
is-stable
1 parent 3936598 commit 13fd88eCopy full SHA for 13fd88e
.github/workflows/release.yaml
@@ -74,6 +74,10 @@ jobs:
74
- name: Image Push
75
run: |
76
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: |
81
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
82
83
- name: Create Github release
0 commit comments