Skip to content

Commit bbb9771

Browse files
committed
Add module 3 exercise steps
1 parent 050ef66 commit bbb9771

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

modules/03-sharing-your-work.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,39 @@ All of the other scaffolding you need is already included in this repo in the
3939
`.github/workflows` directory.
4040
When you build your own MyST website, you can reproduce this with `myst init --site` and
4141
`myst init --gh-pages`.
42+
43+
44+
### Step 2: Make a change & push to GitHub
45+
46+
1. Edit any file in `examples/module-3/my-website`.
47+
1. Commit and push:
48+
49+
```bash
50+
git add .
51+
git commit --message="Edit to trigger GitHub Pages deployment"
52+
git push origin main
53+
```
54+
55+
### Step 3: View your new GitHub Pages deployment!
56+
57+
1. In your repository, view the GitHub Actions progress.
58+
1. From the repository home page, click the "Actions" tab towards the top.
59+
1. You should see an action titled "Edit to trigger GitHub Pages deployment", matching
60+
the commit message from the previous step.
61+
Is it complete (green check)?
62+
Or is it still in progress?
63+
Did it fail (red X)? Let us know if it failed.
64+
1. View your website. Check that the change you made in the previous step is visible!
65+
* Your website will be available at this URL (replace `MY-USERNAME` with your username
66+
😉):
67+
68+
```
69+
https://MY-USERNAME.github.io/workshop-csdms2025-examples
70+
```
71+
72+
### Step 4: Edit your notebook to display some data (WIP)
73+
74+
_TODO_
75+
76+
77+

0 commit comments

Comments
 (0)