File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 18
18
commentbody="${{github.event.comment.body}}"
19
19
commentbody=$(echo $commentbody | sed "s/\/imagebuild//g")
20
20
sudo git clone https://github.com/sealerio/basefs.git && cd basefs
21
- sudo touch autobuild.log && sudo chmod 666 autobuild.log && sudo bash auto-build .sh --username="${{secrets.REGISTRY_USERNAME}}" --password="${{secrets.REGISTRY_PASSWORD}}" $commentbody > autobuild.log && cat autobuild.log
21
+ sudo touch autobuild.log && sudo chmod 666 autobuild.log && sudo bash auto.sh --username="${{secrets.REGISTRY_USERNAME}}" --password="${{secrets.REGISTRY_PASSWORD}}" $commentbody > autobuild.log && cat autobuild.log
22
22
echo "::set-output name=info::$(grep 'cri:' autobuild.log))"
23
23
24
24
- name : Success Commit
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ for i in "$@"; do
63
63
esac
64
64
done
65
65
66
- version_compare () { printf ' %s\n%s\n' " $2 " " $1 " | sort -V -C; } # # version_vompare $a $b: a>=b
66
+ version_compare () { printf ' %s\n%s\n' " $2 " " $1 " | sort -V -C; } # # version_compare $a $b: a>=b
67
67
68
68
ARCH=$( case " $( uname -m) " in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; * ) echo " unsupported architecture" " $( uname -m) " && exit 1 ;; esac)
69
69
You can’t perform that action at this time.
0 commit comments