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 12866fa commit 446ab35Copy full SHA for 446ab35
.github/workflows/deployDocs.yml
@@ -3,7 +3,7 @@ name: Deploy Documentation
3
on:
4
push:
5
branches:
6
- - release
+ - master
7
8
jobs:
9
build-and-deploy:
@@ -28,6 +28,7 @@ jobs:
28
run: yarn docs:build
29
30
- name: Deploy documentation
31
+ if: github.ref == 'refs/heads/release'
32
env:
33
GIT_USER: github-actions[bot]
34
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}
@@ -38,3 +39,8 @@ jobs:
38
39
cd docuilib
40
yarn install
41
yarn deploy
42
+
43
+ - name: Deploy disclaimer
44
+ if: github.ref != 'refs/heads/release'
45
+ run: |
46
+ echo "Deploying will only happen on release branch"
0 commit comments