Skip to content

Commit

Permalink
docs: updated GitHub actions versions on hosting.md (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
george-gca committed Feb 4, 2024
1 parent f6bcb59 commit 9bbccbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions guide/hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'

Expand All @@ -181,15 +181,15 @@ jobs:
- name: Build
run: npm run build -- --base /<name_of_repo>/

- uses: actions/configure-pages@v3
- uses: actions/configure-pages@v4

- uses: actions/upload-pages-artifact@v1
- uses: actions/upload-pages-artifact@v3
with:
path: dist

- name: Deploy
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
```
- In your repository, go to Settings>Pages. Under "Build and deployment", select "Github Actions".
- Finally, after all workflows are executed, a link to the slides should appear under Settings>Pages.

0 comments on commit 9bbccbb

Please sign in to comment.