We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
is-stable
1 parent 8821696 commit 27b30c9Copy full SHA for 27b30c9
.github/workflows/release.yaml
@@ -74,6 +74,9 @@ jobs:
74
- name: Image Push
75
run: |
76
podman push quay.io/${{ github.event.inputs.quay-organization }}/notebook:${{ github.event.inputs.release-version }}
77
+ - name: Image Push Stable
78
+ if: ${{github.event.inputs.is-stable}}
79
+ run: |
80
podman push quay.io/${{ github.event.inputs.quay-organization }}/notebook:${{ github.event.inputs.release-version }} quay.io/${{ github.event.inputs.quay-organization }}/notebook:stable
81
82
- name: Create Github release
0 commit comments