We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89884f1 commit e137dbcCopy full SHA for e137dbc
deploy.sh
@@ -40,6 +40,14 @@ fi
40
# Check if it's a dry-run first
41
if $INPUT_DRY_RUN; then
42
echo "ℹ︎ Dry run: No files will be committed to Subversion."
43
+
44
+ if [[ -z "$SVN_USERNAME" ]]; then
45
+ echo "Warning: SVN_USERNAME is missing. The commit will fail if you attempt a real run."
46
+ fi
47
48
+ if [[ -z "$SVN_PASSWORD" ]]; then
49
+ echo "Warning: SVN_PASSWORD is missing. The commit will fail if you attempt a real run."
50
51
else
52
# If it's not a dry-run, check for SVN credentials
53
if [[ -z "$SVN_USERNAME" ]]; then
0 commit comments