File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 99
99
- name : Checkout repository
100
100
uses : actions/checkout@v4
101
101
with :
102
- persist-credentials : false
102
+ persist-credentials : false
103
103
- name : Mark the workspace as safe
104
104
# https://github.com/actions/checkout/issues/766
105
105
run : git config --global --add safe.directory ${GITHUB_WORKSPACE}
@@ -112,17 +112,17 @@ jobs:
112
112
pushd Examples/${EXAMPLE}
113
113
114
114
# package the example (docker and swift toolchain are installed on the GH runner)
115
- echo yes | swift package archive --allow-network-connections docker
116
-
115
+ echo yes | swift package archive --allow-network-connections docker
116
+
117
117
# did the plugin generated a Linux binary?
118
118
[ -f ${OUTPUT_FILE} ]
119
119
file ${OUTPUT_FILE} | grep --silent ELF
120
-
120
+
121
121
# did the plugin created a ZIP file?
122
122
[ -f ${ZIP_FILE} ]
123
-
123
+
124
124
# does the ZIP file contain the bootstrap?
125
125
unzip -l ${ZIP_FILE} | grep --silent bootstrap
126
-
126
+
127
127
echo "✅ The archive plugin is OK"
128
128
popd
You can’t perform that action at this time.
0 commit comments