Skip to content

Commit 4a5c246

Browse files
authored
Merge pull request #112 from TurkNet/sdk-version-updates
rte images fixs
2 parents daff20e + f6e6cf0 commit 4a5c246

101 files changed

Lines changed: 239 additions & 285 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docker-build-push.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
- name: Build and push Docker images
3030
run: |
3131
changed_dirs=()
32+
pushed_images_file="pushed_images.txt"
33+
: > "$pushed_images_file"
3234
3335
for added_modified_file in ${{ steps.files.outputs.added_modified }}; do
3436
if [[ "$added_modified_file" == *"Dockerfile" ]] || [[ "$added_modified_file" == *"version" ]]; then
@@ -59,4 +61,25 @@ jobs:
5961
full_tag=turknethub/$image_name:$version-${{ github.run_number }}
6062
6163
docker buildx build --platform=linux/amd64,linux/arm64 --tag $full_tag -f $dockerfile $dir --push
62-
done
64+
echo "$full_tag" >> "$pushed_images_file"
65+
done
66+
67+
echo ""
68+
echo "=========================================="
69+
echo "Push edilen Docker imajları:"
70+
echo "=========================================="
71+
if [ -s "$pushed_images_file" ]; then
72+
cat "$pushed_images_file"
73+
else
74+
echo "(Bu çalıştırmada push edilen imaj yok)"
75+
fi
76+
echo "=========================================="
77+
78+
- name: Pushed images summary
79+
if: always()
80+
run: |
81+
if [ -f pushed_images.txt ] && [ -s pushed_images.txt ]; then
82+
echo "## Push edilen imaj listesi"
83+
echo ""
84+
while read -r img; do echo "- \`$img\`"; done < pushed_images.txt
85+
fi

rte/dotnet10-1/Dockerfile

Lines changed: 0 additions & 95 deletions
This file was deleted.

rte/dotnet10-1/version

Lines changed: 0 additions & 1 deletion
This file was deleted.

rte/dotnet10-signoz-1/Dockerfile

Lines changed: 0 additions & 102 deletions
This file was deleted.

rte/dotnet10-signoz-1/version

Lines changed: 0 additions & 1 deletion
This file was deleted.

rte/dotnet10-signoz/CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
new base image

rte/dotnet10-signoz/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.0.1
1+
10.0.2

rte/dotnet10/CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
new base image

rte/dotnet10/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.0.1
1+
10.0.2

rte/dotnet3/CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
new base image

0 commit comments

Comments
 (0)