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 c798887 commit ff23ae9Copy full SHA for ff23ae9
.github/workflows/github-actions.yml
@@ -38,12 +38,12 @@ 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/}"
+ run: BRANCH_NAME=${GITHUB_REF#refs/heads/}
42
43
# extract branch name on pull request
44
45
if: github.event_name == 'pull_request'
46
- run: BRANCH_NAME=${GITHUB_HEAD_REF}"
+ run: BRANCH_NAME=${GITHUB_HEAD_REF}
47
48
# Build and push Operator image (don't push on PR)
49
- name: Build and push Docker image
0 commit comments