Skip to content

Commit fe37755

Browse files
committed
fix directory ownership
1 parent 52f2a7f commit fe37755

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/jekyll-gh-pages.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v3
32+
- name: Set ownership
33+
run: |
34+
# this is to fix GIT not liking owner of the checkout dir
35+
chown -R $(id -u):$(id -g) $PWD
3236
- name: Setup Pages
3337
uses: actions/configure-pages@v2
3438
- name: build_and_deploy

0 commit comments

Comments
 (0)