Skip to content

Commit f1bfabb

Browse files
committed
fix yaml linter
1 parent 869d1d0 commit f1bfabb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/examples.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Checkout repository
100100
uses: actions/checkout@v4
101101
with:
102-
persist-credentials: false
102+
persist-credentials: false
103103
- name: Mark the workspace as safe
104104
# https://github.com/actions/checkout/issues/766
105105
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
@@ -112,17 +112,17 @@ jobs:
112112
pushd Examples/${EXAMPLE}
113113
114114
# 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+
117117
# did the plugin generated a Linux binary?
118118
[ -f ${OUTPUT_FILE} ]
119119
file ${OUTPUT_FILE} | grep --silent ELF
120-
120+
121121
# did the plugin created a ZIP file?
122122
[ -f ${ZIP_FILE} ]
123-
123+
124124
# does the ZIP file contain the bootstrap?
125125
unzip -l ${ZIP_FILE} | grep --silent bootstrap
126-
126+
127127
echo "✅ The archive plugin is OK"
128128
popd

0 commit comments

Comments
 (0)