diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9743d17ffb..2bf1dcddb6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -49,6 +49,8 @@ jobs: with: app-id: ${{ vars.RELEASE_APP_ID }} private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }} + permission-contents: write + permission-actions: write - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/frankenphp.c b/frankenphp.c index 8ee0c04285..1b852e52c7 100644 --- a/frankenphp.c +++ b/frankenphp.c @@ -138,7 +138,8 @@ static void *frankenphp_parent_death_watcher(void *arg) { _exit(1); } struct kevent event; - while (kevent(kq, NULL, 0, &event, 1, NULL) < 0 && errno == EINTR); + while (kevent(kq, NULL, 0, &event, 1, NULL) < 0 && errno == EINTR) + ; _exit(1); } #endif