We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c2020 commit 4fbdf80Copy full SHA for 4fbdf80
.github/workflows/packaging.yml
@@ -77,10 +77,18 @@ jobs:
77
-u ${RWS_AUTH} \
78
-F product=${PRODUCT_NAME}"
79
80
+ # We don't want to try to print secrets to the log, but we want
81
+ # to print a "curl" command to see what's going on.
82
+ CURL_CMD_ECHO="curl -LfsS \
83
+ -X PUT ${RWS_URL_PART}/${OS}/${DIST} \
84
+ -u *** \
85
+ -F product=${PRODUCT_NAME}"
86
+
87
for f in $(ls -I '*build*' -I '*.changes' ./build); do
88
CURL_CMD+=" -F $(basename ${f})=@./build/${f}"
89
+ CURL_CMD_ECHO+=" -F $(basename ${f})=@./build/${f}"
90
done
91
- echo ${CURL_CMD}
92
+ echo ${CURL_CMD_ECHO}
93
94
${CURL_CMD}
0 commit comments