File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- VERSION=" 1.0.5 "
3
+ VERSION=" 1.0.6 "
4
4
5
5
build_plugin () {
6
6
ACTION=$1
@@ -22,12 +22,12 @@ build_plugin () {
22
22
docker rm -vf " $id "
23
23
24
24
cp config.json ./sumoplugin/
25
- docker plugin create sumologic/docker-logging-driver:${VERSION_ARCH} ./sumoplugin/
25
+ docker plugin create ghcr.io/ sumologic/docker-logging-driver:${VERSION_ARCH} ./sumoplugin/
26
26
27
27
if [[ " $ACTION " == " install" ]]; then
28
- docker plugin enable sumologic/docker-logging-driver:${VERSION_ARCH}
28
+ docker plugin enable ghcr.io/ sumologic/docker-logging-driver:${VERSION_ARCH}
29
29
elif [[ " $ACTION " == " push" ]]; then
30
- docker plugin push sumologic/docker-logging-driver:${VERSION_ARCH}
30
+ docker plugin push ghcr.io/ sumologic/docker-logging-driver:${VERSION_ARCH}
31
31
else
32
32
echo " Invalid action ${ACTION} , must be 'install' or 'push'."
33
33
fi
Original file line number Diff line number Diff line change 2
2
3
3
source ./plugin_build.sh
4
4
5
- for arch in " " " amd64" " arm64" ; do
5
+ for arch in " " " amd64" " arm64" " aarch64 " ; do
6
6
build_plugin " install" $arch
7
7
done
Original file line number Diff line number Diff line change 2
2
3
3
source ./plugin_build.sh
4
4
5
- for arch in " " " amd64" " arm64" ; do
5
+ for arch in " " " amd64" " arm64" " aarch64 " ; do
6
6
build_plugin " push" $arch
7
7
done
You can’t perform that action at this time.
0 commit comments