Skip to content

Commit bf9886a

Browse files
committed
Fix github actions deployment error (2)
1 parent 1e9e4b5 commit bf9886a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy-example.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
source: ./
4141
destination: ./_site
4242

43-
- run: cp -R ./Examples/webgpu-jelly-slider/dist/* ./_site/Examples/webgpu-jelly-slider/
43+
# Take ownership of the folder from Docker's root user, then copy!
44+
- run: |
45+
sudo chown -R runner ./_site
46+
cp -R ./Examples/webgpu-jelly-slider/dist/* ./_site/Examples/webgpu-jelly-slider/
4447
4548
- uses: actions/upload-pages-artifact@v3
4649
with:

0 commit comments

Comments
 (0)