File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ jobs:
134134 files=$(find apps/ -name "kustomization.yaml")
135135
136136 # Prepare output file
137- output_file="kustomization_info .md"
137+ output_file="Tooling .md"
138138 echo "| Tools | Version | Repo | Status |" > $output_file
139139 echo "| :--------------: | :-----: | :---: | :------: |" >> $output_file
140140
@@ -164,11 +164,16 @@ jobs:
164164 # Display the output
165165 cat $output_file
166166
167- - name : Upload kustomization Info
168- uses : actions/upload-artifact@v3
169- with :
170- name : kustomization-info
171- path : kustomization_info.md
167+ - name : Commit New index.yaml 📝
168+ run : |
169+ if [[ $(git diff) ]];
170+ then
171+ git add Tooling.md
172+ git commit -m "[ci skip] :robot: [github actions actor] - update Tooling.md"
173+ git push
174+ else
175+ echo "nothing to do!!!"
176+ fi
172177
173178
174179 notify :
You can’t perform that action at this time.
0 commit comments