(pipeline) Fix wrong push name for auto_docs branches

This commit is contained in:
Felix Weiß
2023-08-21 14:41:47 +02:00
parent aed1690a7c
commit 4551d24128
2 changed files with 2 additions and 647 deletions

View File

@@ -50,7 +50,7 @@ jobs:
git fetch
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git checkout --orphan ${{ steps.extract_branch.outputs.branch }}_docs
git checkout --orphan ${{ steps.extract_branch.outputs.branch }}_auto_docs
git rm -rf .
cp ~/plctypes.md ./plctypes.md &&
git add "./plctypes.md" -f &&
@@ -61,7 +61,7 @@ jobs:
continue-on-error: true
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ steps.extract_branch.outputs.branch }}
branch: ${{ steps.extract_branch.outputs.branch }}_auto_docs
- name: Report Generator
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.22