We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8202327 commit 7be6afbCopy full SHA for 7be6afb
tools/local/release-windows.sh
@@ -121,11 +121,9 @@ github_create_release() {
121
}
122
123
upload() {
124
- if [ -z "${DRYRUN}" ]; then
125
- upload_s3
126
- if [ -z "$GITHUB_NOUPLOAD" ]; then
127
- upload_github
128
- fi
+ upload_s3
+ if [ -z "$GITHUB_NOUPLOAD" ]; then
+ upload_github
129
fi
130
131
@@ -242,6 +240,8 @@ export WORKRAVE_UPLOAD_DIR="snapshots/${S3_ARTIFACT_DIR}/${WORKRAVE_BUILD_ID}"
242
240
build_pre
243
241
build
244
build_post
245
-upload
246
-catalog
247
-appcast
+if [ -z "${DRYRUN}" ]; then
+ upload
+ catalog
+ appcast
+fi
0 commit comments