File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 7474 - name : Set latest tag for non main branch
7575 if : " ${{ steps.branch-name.outputs.current_branch != 'main' }}"
7676 run : |
77- echo "latesttag=${${{ steps.branch-name.outputs.current_branch }}-latest"@L} >> $GITHUB_ENV
77+ latesttag=${{ steps.branch-name.outputs.current_branch }}-latest
78+ echo "latesttag=${latesttag@L}" >> $GITHUB_ENV
7879
7980 - name : Buildah Action
8081 id : build-operator
@@ -167,7 +168,8 @@ jobs:
167168 - name : Set latest tag for non main branch
168169 if : " ${{ steps.branch-name.outputs.current_branch != 'main' }}"
169170 run : |
170- echo "latesttag=${{ steps.branch-name.outputs.current_branch }}-latest" >> $GITHUB_ENV
171+ latesttag=${{ steps.branch-name.outputs.current_branch }}-latest
172+ echo "latesttag=${latesttag@L}" >> $GITHUB_ENV
171173
172174 - name : Build operator-bundle using buildah
173175 id : build-operator-bundle
@@ -229,7 +231,8 @@ jobs:
229231 - name : Set latest tag for non main branch
230232 if : " ${{ steps.branch-name.outputs.current_branch != 'main' }}"
231233 run : |
232- echo "latesttag=${{ steps.branch-name.outputs.current_branch }}-latest" >> $GITHUB_ENV
234+ latesttag=${{ steps.branch-name.outputs.current_branch }}-latest
235+ echo "latesttag=${latesttag@L}" >> $GITHUB_ENV
233236
234237 - name : Install opm
235238 uses : redhat-actions/openshift-tools-installer@v1
You can’t perform that action at this time.
0 commit comments