You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ The GitHub Actions workflow that builds and deploys your site to Github Pages is
125
125
- name: Setup Ruby
126
126
uses: ruby/setup-ruby@v1
127
127
with:
128
-
ruby-version: '3.1'
128
+
ruby-version: '3.3'
129
129
bundler-cache: true
130
130
cache-version: 0
131
131
working-directory: '${{ github.workspace }}/docs'
@@ -135,9 +135,9 @@ The GitHub Actions workflow that builds and deploys your site to Github Pages is
135
135
136
136
```yaml
137
137
- name: Upload artifact
138
-
uses: actions/upload-pages-artifact@v1
138
+
uses: actions/upload-pages-artifact@v3
139
139
with:
140
-
path: "docs/_site/"
140
+
path: docs/_site/
141
141
```
142
142
143
143
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