Skip to content
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
12 changes: 11 additions & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
# Troublesshooting
# Troublesshooting
## How to deploy actions on ubuntu runners
We use `sudo` command to run `apt/apt-get` and install systemdependencies. If you are using a un-priviledged user account, the easist way is edit `sudoers`.
- You should switch to root and enter:
```bash
visudo
```
- Then add this line into it:
```txt
%your_user_name ALL=(ALL:ALL) NOPASSWD:/usr/bin/apt,/usr/bin/apt-get
```