We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b12da63 commit 8c61679Copy full SHA for 8c61679
.github/workflows/deploy-workflow.yml
@@ -21,6 +21,12 @@ jobs:
21
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
22
- name: Build project
23
run: bundle exec jekyll build -d docs-tmp
24
+ - name: Add CNAME file
25
+ run: |
26
+ touch docs-tmp/CNAME
27
+ echo "ui-testing.academy" >> docs-tmp/CNAME
28
- name: Deploy project
29
run: |
- git push origin `git subtree split --prefix docs-tmp main`:gh-pages --force
30
+ git --work-tree docs-tmp add --all
31
+ git --work-tree docs-tmp commit -m 'Deploy'
32
+ git push origin HEAD:gh-pages --force
0 commit comments