We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a55cc2f commit a90583aCopy full SHA for a90583a
.github/workflows/deploy-to-test.yaml
@@ -78,6 +78,11 @@ jobs:
78
if: always() && needs.validate.result == 'success'
79
runs-on: ubuntu-latest
80
steps:
81
+ - name: Checkout repository at version tag
82
+ uses: actions/checkout@v4
83
+ with:
84
+ ref: ${{ inputs.version }}
85
+
86
- name: Install OpenShift CLI
87
uses: redhat-actions/openshift-tools-installer@v1
88
with:
@@ -113,9 +118,6 @@ jobs:
113
118
oc -n ${{ env.OPENSHIFT_NAMESPACE_TOOLS }} tag \
114
119
${{ env.IMAGE_NAME }}:${{ inputs.version }} ${{ env.IMAGE_NAME }}:test
115
120
116
- - name: Checkout repository
117
- uses: actions/checkout@v4
-
121
- name: Install Helm
122
run: |
123
curl -fsSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
0 commit comments