You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tools/create-release.sh
+12-2
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ currentDirectory=$(dirname "$0")
5
5
6
6
personalAccessToken=$1
7
7
if [ -z"${personalAccessToken}" ];then
8
-
echo"Missing GitHub personal access token! See https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry if you need to create one."
8
+
echo"Missing GitHub personal access token! Visit https://github.com/settings/tokens/new to create one. Must have \"write:packages\" permission."
9
9
exit 1
10
10
fi
11
11
@@ -54,11 +54,21 @@ if ! confirm; then
54
54
exit 2
55
55
fi
56
56
57
+
# Get the project directory (https://stackoverflow.com/questions/59895/how-can-i-get-the-source-directory-of-a-bash-script-from-within-the-script-itsel)
0 commit comments