Skip to content

Commit 81203df

Browse files
committed
fix: update deployment to use standard GitHub Pages
- Remove custom domain configuration from CI workflow - Update README with correct GitHub Pages setup instructions - Add CI/CD status badge to README - Clean up deployment documentation The site will now deploy to: https://thesolutiondeskandcompany.github.io/markdown-notes/
1 parent 8a724fc commit 81203df

File tree

2 files changed

+9
-18
lines changed

2 files changed

+9
-18
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,3 @@ jobs:
6767
with:
6868
github_token: ${{ secrets.GITHUB_TOKEN }}
6969
publish_dir: ./dist
70-
cname: markdown.thesolutiondesk.ca

README.md

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 📝 Markdown Notes
22

33
[![Live Demo](https://img.shields.io/badge/demo-live-brightgreen)](https://thesolutiondeskandcompany.github.io/markdown-notes/)
4+
[![CI/CD](https://github.com/thesolutiondeskandcompany/markdown-notes/workflows/CI/CD%20Pipeline/badge.svg)](https://github.com/thesolutiondeskandcompany/markdown-notes/actions)
45
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
56
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
67
[![GitHub issues](https://img.shields.io/github/issues/thesolutiondeskandcompany/markdown-notes)](https://github.com/thesolutiondeskandcompany/markdown-notes/issues)
@@ -110,25 +111,16 @@ function greetUser(name) {
110111
The app is automatically deployed to GitHub Pages at:
111112
[thesolutiondeskandcompany.github.io/markdown-notes](https://thesolutiondeskandcompany.github.io/markdown-notes/)
112113

113-
### Custom Domain Setup
114+
### GitHub Pages Setup
114115

115-
To use a custom domain (e.g., `markdown.thesolutiondesk.ca`):
116+
The site is automatically deployed to GitHub Pages at:
117+
`https://thesolutiondeskandcompany.github.io/markdown-notes/`
116118

117-
1. **Add a CNAME record** in your domain's DNS settings:
118-
```text
119-
Type: CNAME
120-
Name: markdown
121-
Value: thesolutiondeskandcompany.github.io
122-
TTL: Auto
123-
```
124-
125-
2. **Configure GitHub Pages**:
126-
- Go to your repository → Settings → Pages
127-
- Under "Custom domain", enter your domain
128-
- Save and wait for DNS verification
129-
- Once verified, enable "Enforce HTTPS"
130-
131-
> Note: DNS changes may take up to 24 hours to propagate globally.
119+
To set up GitHub Pages:
120+
1. Go to your repository → Settings → Pages
121+
2. Set source to "Deploy from a branch"
122+
3. Select branch: `gh-pages` (created automatically by the workflow)
123+
4. Your site will be available within a few minutes
132124

133125
## 🚀 Getting Started
134126

0 commit comments

Comments
 (0)