Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit 31608f0

Browse files
authored
fix(ci): add file ownership to pass build (#39)
1 parent bb334ba commit 31608f0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on:
55
- main
66
pull_request: {}
77
workflow_dispatch: {}
8+
89
jobs:
910
build:
1011
runs-on: ubuntu-latest
11-
1212
permissions:
1313
contents: write
1414
outputs:
@@ -41,7 +41,9 @@ jobs:
4141
- name: Install dependencies
4242
run: yarn install --check-files
4343
- name: build
44-
run: npx projen build
44+
run: |
45+
chown -R $(whoami) $(pwd)
46+
npx projen build
4547
- id: self_mutation
4648
name: Find mutations
4749
run: >-

0 commit comments

Comments
 (0)