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

fix(ci): add file ownership to pass build #39

Merged
merged 18 commits into from
Mar 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
- main
pull_request: {}
workflow_dispatch: {}

jobs:
build:
runs-on: ubuntu-latest

permissions:
contents: write
outputs:
Expand Down Expand Up @@ -41,7 +41,9 @@ jobs:
- name: Install dependencies
run: yarn install --check-files
- name: build
run: npx projen build
run: |
chown -R $(whoami) $(pwd)
npx projen build
- id: self_mutation
name: Find mutations
run: >-
Expand Down