Skip to content

Commit 19c1960

Browse files
committed
Update GitHub Actions workflow to use actions/upload-artifact@v3 and specify artifact name and path for improved deployment process.
1 parent 24549cc commit 19c1960

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ jobs:
3333
source: ./docs
3434
destination: ./_site
3535
- name: Upload artifact
36-
uses: actions/upload-pages-artifact@v1
36+
uses: actions/upload-artifact@v3
37+
with:
38+
name: pages-artifact
39+
path: ./_site
3740

3841
# Deployment job
3942
deploy:

0 commit comments

Comments
 (0)