Skip to content

Commit

Permalink
Updated GitHub CI workflow...
Browse files Browse the repository at this point in the history
and changed a log message.
  • Loading branch information
snake-4 committed Apr 27, 2024
1 parent 5c2ba2a commit 2a31d65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
unzip module/build/outputs/release/*-debug.zip -d extracted-debug
- name: Upload release
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.prepareArtifact.outputs.releaseName }}
path: "./extracted-release/*"

- name: Upload debug
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.prepareArtifact.outputs.debugName }}
path: "./extracted-debug/*"
4 changes: 2 additions & 2 deletions module/jni/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ class ZygiskModule : public zygisk::ModuleBase
do
{
pid_t pid = getpid();
ASSERT_DO(invokeZygiskCompanion, write(fd, &pid, sizeof(pid)) == sizeof(pid), break);
ASSERT_DO(invokeZygiskCompanion, read(fd, &result, sizeof(result)) == sizeof(result), break);
ASSERT_DO(callbackFunction, write(fd, &pid, sizeof(pid)) == sizeof(pid), break);
ASSERT_DO(callbackFunction, read(fd, &result, sizeof(result)) == sizeof(result), break);
} while (false);
close(fd);
}
Expand Down

0 comments on commit 2a31d65

Please sign in to comment.