Skip to content

Commit

Permalink
ci: updates
Browse files Browse the repository at this point in the history
- limit workflows which modify gh-pages by single concurrency key. this allows to avoid race conditions between publishing docs and charts to different pages based on GH pages
- merge-renovate script: checkout main after applying updates
  • Loading branch information
zekker6 committed Jul 26, 2023
1 parent 8711ff1 commit af780b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Charts: Release"

concurrency: helm-release
concurrency: gh-pages

on:
workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs-release.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: "Docs: Release to GitHub pages"

concurrency: gh-pages

on:
workflow_dispatch:
push:
Expand Down
2 changes: 2 additions & 0 deletions .taskfiles/merge-renovate-prs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ EOF
git commit -am "chore: bump chart version"
git push
done

git checkout main

0 comments on commit af780b6

Please sign in to comment.