There was an error while loading. Please reload this page.
1 parent 3bfa693 commit c157128Copy full SHA for c157128
1 file changed
.github/workflows/docs.yml
@@ -172,8 +172,9 @@ jobs:
172
with:
173
name: kotlinx-rpc
174
- name: Unzip artifact
175
+ # this step runs in a container without bash, so the script must be POSIX sh compatible
176
run: |
- set -euo pipefail
177
+ set -eu
178
unzip -O UTF-8 -qq '${{ env.ALGOLIA_ARTIFACT }}' -d algolia-indexes
179
env algolia-key='${{env.ALGOLIA_KEY}}' java -jar /opt/builder/help-publication-agent.jar \
180
update-index \
@@ -182,4 +183,4 @@ jobs:
182
183
--product '${{env.CONFIG_JSON_PRODUCT}}' \
184
--version '${{env.CONFIG_JSON_VERSION}}' \
185
--index-directory algolia-indexes/ \
- 2>&1 | tee algolia-update-index-log.txt
186
+ 2>&1
0 commit comments