We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff23ae9 commit 327f8ecCopy full SHA for 327f8ec
.github/workflows/github-actions.yml
@@ -38,12 +38,14 @@ jobs:
38
# extract branch name
39
- name: Extract branch name
40
if: github.event_name != 'pull_request'
41
- run: BRANCH_NAME=${GITHUB_REF#refs/heads/}
+ env:
42
+ BRANCH_NAME: ${GITHUB_REF#refs/heads/}
43
44
# extract branch name on pull request
45
46
if: github.event_name == 'pull_request'
- run: BRANCH_NAME=${GITHUB_HEAD_REF}
47
48
+ BRANCH_NAME: ${GITHUB_HEAD_REF}
49
50
# Build and push Operator image (don't push on PR)
51
- name: Build and push Docker image
0 commit comments