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 2092715 commit 4583624Copy full SHA for 4583624
.github/workflows/deploy-bundle-preview.yml
@@ -84,13 +84,16 @@ jobs:
84
body-includes: UI bundle preview build successful!
85
direction: last
86
87
+ - name: Checkout gh-pages Branch
88
+ uses: actions/checkout@v3
89
+ with:
90
+ token: ${{ secrets.DOCS_GITHUB_PAT }}
91
+ ref: gh-pages
92
+ path: pages
93
+
94
- name: Deploy to GitHub Pages
95
if: success()
96
run: |
- git clone https://x-access-token:${{ secrets.DOCS_GITHUB_PAT }}@github.com/$GITHUB_REPOSITORY.git pages
- cd pages
- git checkout gh-pages
-
97
# If there was previously a build for the preview, then remove it
98
# so we get a clean build. This is needed in case a follow up
99
# build of the same pull request contains content deletions.
0 commit comments