Skip to content

Commit

Permalink
Fix pipeline (#631)
Browse files Browse the repository at this point in the history
* fix release pipeline & prepare for release

* fix in pipeline
  • Loading branch information
Amper authored Aug 30, 2023
1 parent 1d97fbc commit a50e4e6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
git checkout -b "${VM_GIT_BRANCH_NAME}"
git add charts/*/CHANGELOG.md
git add charts/*/README.md
git commit -m "Automatic update CHANGELOGs and READMEs"
git commit -S -m "Automatic update CHANGELOGs and READMEs"
git push origin ${VM_GIT_BRANCH_NAME}
gh pr create -f
gh pr merge ${VM_GIT_BRANCH_NAME} --auto --squash --delete-branch
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/update-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
cp -fr ${{ runner.temp }}/charts ./
git add README.md
git add charts/*/README.md
git commit -m "Synchronize docs"
git commit -S -m "Synchronize docs"
git push origin ${VM_GIT_BRANCH_NAME}
gh pr create -f
gh pr merge ${VM_GIT_BRANCH_NAME} --auto --squash --delete-branch
env:
GH_TOKEN: "${{ secrets.VM_BOT_GH_TOKEN }}"
GITHUB_TOKEN: "${{ secrets.VM_BOT_GH_TOKEN }}"

0 comments on commit a50e4e6

Please sign in to comment.