Skip to content

Commit b6ddc91

Browse files
author
Diego Luisi
committed
⚡ test pipeline
1 parent 2ab03f9 commit b6ddc91

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/main.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)