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 4c47473Copy full SHA for 4c47473
.github/workflows/publish.yml
@@ -5,6 +5,8 @@ on:
5
branches: [source]
6
push:
7
8
+ paths:
9
+ - 'website/**'
10
11
jobs:
12
checks:
@@ -30,4 +32,6 @@ jobs:
30
32
- name: Fetch credentials
31
33
run: echo "machine github.com login presto-oss password ${{ secrets.PRESTOOSS_PUBLISH_TOKEN }}" > ~/.netrc
34
- name: Release to GitHub Pages
- run: cd website && yarn install && GIT_USER="presto-oss" yarn run publish-gh-pages | (head -c 32768; echo "... skipping output ..."; tail -c 32768)
35
+ run: |
36
+ set -o pipefail
37
+ 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