try to fix sudo error when running on self hosted runner

This commit is contained in:
aya 2025-05-17 22:34:08 +03:00
parent 72afbc5050
commit 6492705256

View File

@ -19,8 +19,8 @@ jobs:
- name: Prepare third_party directory
run: |
sudo mkdir -p third_party
sudo chown $USER third_party
mkdir -p third_party
chown $USER third_party
- name: Set up Go
uses: actions/setup-go@v4
@ -31,7 +31,11 @@ jobs:
run: go mod download
- name: Build nwaku dependencies
run: make -C waku
run:
git pull
make update
make libwaku
make -C waku
- name: Clean environment
run: go clean -cache