Skip to content

Commit 303da24

Browse files
committed
Update middle project to Sean's website and fix GitHub Actions workflow
1 parent c86255f commit 303da24

4 files changed

Lines changed: 84 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- name: Setup Pages
27-
uses: actions/configure-pages@v3
27+
uses: actions/configure-pages@v4
2828
- name: Upload artifact
29-
uses: actions/upload-pages-artifact@v2
29+
uses: actions/upload-pages-artifact@v3
3030
with:
3131
path: '.'
3232
- name: Deploy to GitHub Pages
3333
id: deployment
34-
uses: actions/deploy-pages@v2
34+
uses: actions/deploy-pages@v3

Instructions8.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Instructions 8: Update Project Information
2+
3+
## Task
4+
Update the middle project in the "My Projects" section to feature Sean's website built in Wix.
5+
6+
## Steps Completed
7+
8+
1. Examined the project structure to locate project data
9+
2. Found project information in `projects/projects-data.json`
10+
3. Identified the middle project (index 1) as "Delete Google Cloud Project Tutorial"
11+
4. Updated the middle project with the following information:
12+
- ID: sean-cameron-website
13+
- Title: Sean's Website
14+
- Short Description: Professional website for Sean Cameron built with Wix
15+
- Long Description: A professional website designed and built for Sean Cameron using the Wix platform. The site showcases Sean's professional background, portfolio, and contact information with a clean, modern design.
16+
- Technologies: Wix, Web Design, Content Management
17+
- Featured Image: images/projects/sean-website-main.jpg
18+
- Live URL: https://www.sean-cameron.com/
19+
5. Saved changes to `projects/projects-data.json`
20+
6. Updated `PromptContext.md` with a summary of changes
21+
7. Created this instructions file (Instructions8.md)
22+
8. Pushed changes to git repository
23+
24+
## Note
25+
The website references an image at `images/projects/sean-website-main.jpg` which may need to be manually added to the repository.

PromptContext.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
- Content populated from existing websites and integrated with dynamic loading
1212
- JavaScript path issues fixed to correctly load content
1313
- All content files (about-me.md, site-metadata.json, resume-data.json, projects-data.json) properly linked
14-
- Instructions7.md created with content integration steps
14+
- Instructions8.md created with project update steps
15+
- Middle project updated to Sean's website (https://www.sean-cameron.com/)
1516
- Image placeholders in place, awaiting manual image addition
1617

1718
## Personalization Context

projects/projects-data.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"projects": [
3+
{
4+
"id": "io-puzzle-2025",
5+
"title": "I/O Puzzle 2025 Solutions",
6+
"shortDescription": "Solutions for the Google I/O 2025 puzzle challenges",
7+
"longDescription": "A comprehensive guide to solving the grid-based puzzles from Google I/O 2025. These puzzles involve connecting nodes in specific patterns to unlock achievements and rewards during the Google I/O event.",
8+
"technologies": ["Problem Solving", "Logical Reasoning", "Pattern Recognition"],
9+
"featuredImage": "images/projects/io-puzzle-main.jpg",
10+
"images": [
11+
"images/projects/io-puzzle-1.jpg",
12+
"images/projects/io-puzzle-2.jpg",
13+
"images/projects/io-puzzle-3.jpg",
14+
"images/projects/io-puzzle-4.jpg"
15+
],
16+
"githubUrl": "https://github.com/emscape/io-puzzle-2025",
17+
"liveUrl": "https://www.emilysueanderson.com/I/O%20Puzzle%202025%20Solutions",
18+
"featured": true,
19+
"completionDate": "2025-03"
20+
},
21+
{
22+
"id": "sean-cameron-website",
23+
"title": "Sean's Website",
24+
"shortDescription": "Professional website for Sean Cameron built with Wix",
25+
"longDescription": "A professional website designed and built for Sean Cameron using the Wix platform. The site showcases Sean's professional background, portfolio, and contact information with a clean, modern design.",
26+
"technologies": ["Wix", "Web Design", "Content Management"],
27+
"featuredImage": "images/projects/sean-website-main.jpg",
28+
"images": [
29+
"images/projects/sean-website-main.jpg"
30+
],
31+
"githubUrl": "",
32+
"liveUrl": "https://www.sean-cameron.com/",
33+
"featured": false,
34+
"completionDate": "2025-02"
35+
},
36+
{
37+
"id": "personal-website",
38+
"title": "HelloEmily.dev Website",
39+
"shortDescription": "My personal portfolio website built with HTML, CSS, and JavaScript",
40+
"longDescription": "A responsive personal portfolio website showcasing my skills, projects, and professional experience. The site features a clean, modern design with sections for about me, skills, projects, and contact information. It's hosted on GitHub Pages with a custom domain.",
41+
"technologies": ["HTML5", "CSS3", "JavaScript", "GitHub Pages"],
42+
"featuredImage": "images/projects/website-main.jpg",
43+
"images": [
44+
"images/projects/website-main.jpg",
45+
"images/projects/website-mobile.jpg"
46+
],
47+
"githubUrl": "https://github.com/emscape/HelloEmilyDev",
48+
"liveUrl": "https://helloemily.dev",
49+
"featured": true,
50+
"completionDate": "2025-03"
51+
}
52+
]
53+
}

0 commit comments

Comments
 (0)