We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e721d61 commit d248302Copy full SHA for d248302
1 file changed
.github/workflows/build_web.yaml
@@ -80,8 +80,15 @@ jobs:
80
git checkout -B gh-pages
81
rm -rf ./*
82
cp -r /tmp/web-build/* .
83
+
84
+ - name: Create CNAME file
85
+ run: |
86
+ echo "cookethflow.subrotobanerjee.xyz" > CNAME
87
88
+ - name: Commit and push to gh-pages
89
90
git add .
- git commit -m "Deploy web build to gh-pages" || echo "No changes to commit"
91
+ git commit -m "Deploy web build to gh-pages with CNAME" || echo "No changes to commit"
92
git push origin gh-pages --force
93
94
- name: Debug gh-pages branch contents
0 commit comments