We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c9932f + 2c362c3 commit e91261fCopy full SHA for e91261f
.github/workflows/release.yml
@@ -43,4 +43,5 @@ jobs:
43
- name: Lösche Branch nach Merge
44
if: github.ref == 'refs/heads/master'
45
run: |
46
- git push origin --delete ${{ github.head_ref }}
+ BRANCH_NAME=${GITHUB_REF##*/} # extrahiere den Branch-Namen aus dem Ref
47
+ git push origin --delete $BRANCH_NAME
0 commit comments