We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa74f8b commit b4334e0Copy full SHA for b4334e0
.github/workflows/deploy.yml
@@ -2,7 +2,6 @@ name: Deploy to GitHub Pages
2
3
permissions:
4
contents: write
5
-
6
on:
7
push:
8
branches:
@@ -13,7 +12,7 @@ jobs:
13
12
runs-on: ubuntu-latest
14
15
steps:
16
- - name: Checkout 🛎️
+ - name: Checkout 🛎
17
uses: actions/checkout@v3
18
19
- name: Setup Node.js
@@ -35,15 +34,11 @@ jobs:
35
34
npm ci
36
CI=false npm run build
37
38
- - name: Create CNAME file
39
- run: |
40
- mkdir -p summit/build
41
- echo "genaisummit.ai" > summit/build/CNAME
42
43
- name: Deploy 🚀
44
uses: JamesIves/github-pages-deploy-action@v4
45
with:
46
branch: gh-pages
47
folder: summit/dist
48
clean: true
+ cname: genaisummit.ai
49
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments