Skip to content

Commit b66ab71

Browse files
Update "Modify the GitHub Actions workflow" docs (#55)
1 parent 5d2da81 commit b66ab71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ The GitHub Actions workflow that builds and deploys your site to Github Pages is
125125
- name: Setup Ruby
126126
uses: ruby/setup-ruby@v1
127127
with:
128-
ruby-version: '3.1'
128+
ruby-version: '3.3'
129129
bundler-cache: true
130130
cache-version: 0
131131
working-directory: '${{ github.workspace }}/docs'
@@ -135,9 +135,9 @@ The GitHub Actions workflow that builds and deploys your site to Github Pages is
135135

136136
```yaml
137137
- name: Upload artifact
138-
uses: actions/upload-pages-artifact@v1
138+
uses: actions/upload-pages-artifact@v3
139139
with:
140-
path: "docs/_site/"
140+
path: docs/_site/
141141
```
142142

143143
4. Modify the trigger so that only changes within the `docs` directory start the workflow. Otherwise, every change to your project (even those that don't affect the docs) would trigger a new site build and deploy.

0 commit comments

Comments
 (0)