We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892c5d1 commit 68b26ddCopy full SHA for 68b26dd
.github/workflows/publish.yml
@@ -30,4 +30,6 @@ jobs:
30
- name: Fetch credentials
31
run: echo "machine github.com login presto-oss password ${{ secrets.PRESTOOSS_PUBLISH_TOKEN }}" > ~/.netrc
32
- name: Release to GitHub Pages
33
- run: cd website && yarn install && GIT_USER="presto-oss" yarn run publish-gh-pages | (head -c 32768; echo "... skipping output ..."; tail -c 32768)
+ run: |
34
+ set -o pipefail
35
+ cd website && yarn install && GIT_USER="presto-oss" yarn run publish-gh-pages | (head -c 32768; echo "... skipping output ..."; tail -c 32768)
0 commit comments