Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit cc144c6

Browse files
committed
Update gha
1 parent 0aa158e commit cc144c6

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/cicd.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,14 @@ jobs:
5656
uses: "actions/checkout@v3"
5757
- name: "Update the image tag"
5858
run: "make tag=${{ github.ref_name }} update-tag"
59+
- name: debug
60+
run: cat ./kubernetes/values.yaml
61+
- name: debug
62+
run: git diff
5963
- name: "Commit changes"
6064
run: >
61-
git config --global user.name ${{ github.actor }} \
62-
git config --global user.email ${{ github.actor }}@github.action \
63-
git checkout -b test02 \
64-
git commit -am "Updating the Docker image tag" \
65-
git push origin test02
65+
git config --global user.name ${{ github.actor }};
66+
git config --global user.email ${{ github.actor }}@github.action;
67+
git checkout -b test02;
68+
git commit -am "Updating the Docker image tag";
69+
git push origin test02;

0 commit comments

Comments
 (0)