Skip to content

Commit

Permalink
commit back to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
eltorio committed Jan 24, 2024
1 parent ad2ae9a commit 21ef6ba
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/manual_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
submodules: true
- name: synchronize
run: |
find charts -mindepth 1 -type d -exec rm -rf {} +
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm plugin install https://github.com/halkeye/helm-repo-html
./sync-charts.sh
Expand All @@ -27,3 +26,9 @@ jobs:
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: "/repo" # App source code path
###### End of Repository/Build Configurations ######
- name: Commit and push changes
run: |
git config --global user.name 'Auto commit'
git config --global user.email 'action@highcanfly.club'
git add repo charts
git diff --quiet && git diff --staged --quiet || (git commit -m "Update repo and charts directories"; git push)

0 comments on commit 21ef6ba

Please sign in to comment.