1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00

Fix home variable and owner of workspace

This commit is contained in:
Artem Bulgakov 2020-06-23 15:01:06 +03:00
parent 66ae8d31bc
commit 283f634c08

View file

@ -1,4 +1,12 @@
#!/bin/bash
# GitHub sets root as owner of repository directory. Change it to user
sudo chown -R "$USER" "$GITHUB_WORKSPACE"
# GitHub sets HOME to /github/home, but Buildozer is installed to /home/user. Change HOME to user's home
export HOME=$HOME_DIR
# Run build
sh -c "buildozer android debug"
# Give access to root
sudo chown -R root "$GITHUB_WORKSPACE"